如何使用NSPR?
我正在编写示例代码,我将使用 NSPR 库!我使用 MS VC++ 并使用 Visual Studio 2010。如何包含这些库并在 Windows 中使用它?
我的主要目标是使用 NSPR 实现线程同步
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将其添加到您的代码中:
#pragma comment (lib, "nspr.lib");
或将其作为附加库添加到链接器设置中。编译后的 lib 文件还必须与项目的解决方案文件位于同一位置。
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.