21.10.2009, 20:21
Quote:
Originally Posted by !MaVe
You can do exports like this with mingw and that stuff:
Code:
#define MYEXPORT extern "C" __declspec(dllexport) MYEXPORT int MyFunctionIWantToExport(int bla) { return 1337; } |