When I compile DLL in C++ Builder with my procedure
extern "C" __declspec(dllexport) __cdecl void show_m(void)
{
MessageBox(NULL, "MSG", "COTI DLL", MB_OK |MB_ICONINFORMATION);
}
I can see in depends.exe that name of my procedure is _show_m. How can I remove underscore? (rename procedure inside dll)
Thanx