Hi everyone.
I was wondering if anyone could tell me how I can set the compiler/linker to use standard call for my DLLs? (In VC++ it's referred to as __stdcall)
Thanx in advance,
Jim
Nevermind, I managed to figure it out once my head had cleared.
Before, I was using:
#define DLLEXPORT __declspec (dllexport)
But I added to this, getting:
#define DLLEXPORT __declspec (dllexport) __stdcall
Which works fine.
Jim.
THANK YOU!
good thing I used the search engine provided for this forum, instead of posting a new message as most do :)
Adrian
Log in to post a comment.
Hi everyone.
I was wondering if anyone could tell me how I can set the compiler/linker to use standard call for my DLLs? (In VC++ it's referred to as __stdcall)
Thanx in advance,
Jim
Nevermind, I managed to figure it out once my head had cleared.
Before, I was using:
#define DLLEXPORT __declspec (dllexport)
But I added to this, getting:
#define DLLEXPORT __declspec (dllexport) __stdcall
Which works fine.
Jim.
THANK YOU!
good thing I used the search engine provided for this forum, instead of posting a new message as most do :)
Adrian