DLL Exports: not all my functions are exported
- by carmellose
I'm trying to create a Windows DLL which exports a number of functions, howver all my functions are exported but one !!
I can't figure it out.
The macro I use is this simple one :
__declspec(dllexport) void myfunction();
It works for all my functions except one. I've looked inside Dependency Walker and here they all are, except one.
How can…