Hello,
Is there any way to have 2 decorated names for the same entry point of a C function for a DLL created with MSVC?
For example:
void __declspec(dllexport) foo(void);
So the DLL exports the function foo for entry point 0x00001000 and _foo on this same entry point ?
I ask because I saw a dll with this kind of double naming of decorated names for backwards compatibility issues
Greetings