zzogl: add stdcall convention

This commit is contained in:
Gregory Hainaut 2015-04-17 18:32:10 +02:00
parent e16cb9a00e
commit 8e3dab7e11
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ extern float fFPS;
#ifdef _MSC_VER #ifdef _MSC_VER
#define EXPORT_C_(type) extern "C" type CALLBACK #define EXPORT_C_(type) extern "C" type CALLBACK
#else #else
#define EXPORT_C_(type) extern "C" __attribute__((externally_visible,visibility("default"))) type #define EXPORT_C_(type) extern "C" __attribute__((stdcall,externally_visible,visibility("default"))) type
#endif #endif
extern int g_LastCRC; extern int g_LastCRC;