VC++防止所有符号名称修饰
我正在开发一个 DLL,它将使用 _stdcall 调用约定从另一种语言中使用(因此没有导入库并包括 dll 的标头)。问题在于 VC++ 似乎总是对其导出的符号进行一些名称修饰。我看到的所有参考资料都说使用 extern“C”,但这似乎仍然给我留下了一个前导下划线,以及一个 @ 加导出名称后面的数字。
最糟糕的是,以目标语言加载扩展 dll 的自动方法本质上是“func_name = GetProcAddress(dll, "func_name")”,因此使用未修饰的名称 GetProcAddress 会失败,并且使用修饰的名称会抱怨非法变量名称( @ 是不允许的) :(
我怎样才能让 VC++ 导出一些完全没有名称装饰的东西?
extern "C" __declspec(dllexport) int __stdcall test(int x, const char *str);
dumpbin.exe
00011366 _test@8 = @ILT+865(_test@8)
I'm working on a DLL which will be used from another language (so no import libs and including the dll's headers) using the _stdcall calling convetion. The problem is that VC++ seems to always do some name decoration on its exported symbols. All the references ive seen say use extern "C" but this still seems to leave me with a leading underscore, and a @ plus a number after the exported name.
The worst bit is the automated means of loading extension dll's in the target language essentially does "func_name = GetProcAddress(dll, "func_name")" so using an undecorated name GetProcAddress fails, and using the decorated name it complains of an illegal variable name (@ is not allowed) :(
How can I make VC++ export somthing with no name decorations at all?
extern "C" __declspec(dllexport) int __stdcall test(int x, const char *str);
dumpbin.exe
00011366 _test@8 = @ILT+865(_test@8)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 .def 文件。它可以让您导出不带修饰的函数。
阅读:使用 DEF 文件从 DLL 导出
You can use a .def file. It will let you export the functions without the decorations.
Read: Exporting from a DLL Using DEF Files