1

当我用我的程序在 C++ Builder 中编译 DLL 时

 extern "C" __declspec(dllexport) __cdecl void show_m(void)
{
 MessageBox(NULL, "MSG", "COTI DLL", MB_OK |MB_ICONINFORMATION);
}

我可以在depends.exe 中看到我的程序名称是_show_m。如何删除下划线?(在 dll 中重命名过程)

谢谢

4

1 回答 1

1

我想我找到了解决方案。在 C++ Builder (Code Gear 2009) 中,我将 FALSE 设置为:

Options->C++ Compiller->Output->Generate underscore on sympol names->FALSE

我想我们可以结束话题了。

于 2013-03-02T20:58:39.307 回答