DLL 和名称修改

发布于 2024-11-06 22:51:41 字数 510 浏览 2 评论 0原文

我有一个第三方 LIB,其中符号导出为纯 C/cdecl,因此例如 dumpbin.exe /SYMBOLS 报告 __imp_nvmlInitnvmlInit代码> 已导出。

然而,在 Visual Studio 2010 中,当我尝试导入它们时,头文件将会有,

extern "C" nvmlReturn_t nvmlInit(...);

但当我尝试编译时,出现以下错误:

main.obj:错误LNK2019:函数_main中引用了无法解析的外部符号_nvmlInit

如何阻止 Visual Studio 查找带有前导下划线的符号? __declspect(dllimport) 不起作用,因为它会装饰为 __imp__nvmlInit (一个下划线太多)。

谢谢。

I have a third-party LIB which has symbols exported as plain C/cdecl, so for example dumpbin.exe /SYMBOLS reports that both __imp_nvmlInit and nvmlInit are exported.

However in Visual Studio 2010 when I try to import them, the header file will have

extern "C" nvmlReturn_t nvmlInit(...);

but when I try to compile, I get the following error:

main.obj : error LNK2019: unresolved external symbol _nvmlInit referenced in function _main

How can I stop Visual Studio from looking for that symbol with a leading underscore? __declspect(dllimport) doesn't work because then it decorates to __imp__nvmlInit (one underscore too many).

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

萌无敌 2024-11-13 22:51:41

这是一个链接器错误。您需要链接与 DLL 关联的 .LIB 文件,这将向链接器承诺,当加载 DLL 本身时,该函数将在运行时可用。

That is a linker error. You need to link with the .LIB file associated with DLL, which will give the linker a promise that the function will be available at run-time when the DLL itself is loaded.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文