use
bool __declspec(dllexport) function() { return true; }
or
__declspec(dllexport) bool function() { return true; }
What is the difference between the two? Will this affect the execution of functions or what they return when called from the application? (this code refers to the DLL).
user1182183
source share