当我用我的程序在 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 中重命名过程)
谢谢
当我用我的程序在 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 中重命名过程)
谢谢