Hi,
my problem is, that I have to compile a few programs with VS2005 and other programs with Watcom (OpenWatcom to be exact). A lot of DLLs, most of them with stdcall calling convention.
Watcom is exporting all functions twice, as the dependency walker shows:
Visual Studio is exporting the functions only onceCode:Function EntryPoint _grafixLibFileInfo@4 0x000010A7 grafixLibFileInfo 0x000010A7
I'm usingCode:Function EntryPoint _grafixLibFileInfo@4 0x00011267
no def fileCode:#define DLL_EXPORT __declspec(dllexport) __stdcall long DLL_EXPORT grafikLibFileInfo(struct GRAFLIBFILE *gLibFile) { ... }
Is there any chance, to export the functions like Watcom does?
Otherwise I have to change all the GetProcAddress calls from e.g.
grafixLibFileInfo to _grafixLibFileInfo@4
Thanks in advance




Reply With Quote
