I need a dll with all symbols exported. It must be usable in visual studio, and use .lib from it. As I don't want to add __declspec(dllexport) I though I could wrap a .lib compiled with vs and make a dll from it with mingw gcc-ld wich exports all symbols.
I tried gcc -shared directly and nm reveals that my dll is empty, so I am wondering if it is possible to do that.
If you have a way to export all the symbols of a dll in vs7.1 it's also good for me. (tried the linker option to force export symbols with "all" as value, it's not recognizied).
Thanks