I am new to windows development and am trying to create a DLL whose
exported functions are not name mangled. For instance:
#define DllImport __declspec( dllimport )
#define DllExport __declspec( dllexport )
DllExport int WINAPI funca(char *x);
the exported function is simply funca? I have seen 32-bit DLLS which do
not do this, so I know it is possible.
The reason I am doing this is so I can call this function from
size.
I am using VC++ to create the DLL.
Any help would be greatly appreciated. Thanks.