VC++防止所有符号名称修饰

发布于 2024-11-19 13:47:55 字数 540 浏览 2 评论 0原文

我正在开发一个 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 技术交流群。

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

发布评论

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

评论(1

坏尐絯℡ 2024-11-26 13:47:55

您可以使用 .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

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