How to use NSPR?

565 Views Asked by At

I am writing a sample code and i would be using NSPR libraries! I work on MS VC++ and use visual studio 2010. How do I include these libraries and use it with windows?

My main goal is to achieve thread synchronization using NSPR

1

There are 1 best solutions below

0
On

add this to your code:

#pragma comment (lib, "nspr.lib");

or add it in linker settings as an additional lib. the compiled lib file must also be in the same location as the solution file of your project.