mirror of https://github.com/PCSX2/pcsx2.git
lilypad: add stdcall convention
This commit is contained in:
parent
8e3dab7e11
commit
75a3abc225
|
@ -110,7 +110,7 @@ inline void * realloc(void *mem, size_t size);
|
|||
#ifdef _MSC_VER
|
||||
#define EXPORT_C_(type) extern "C" __declspec(dllexport) type CALLBACK
|
||||
#else
|
||||
#define EXPORT_C_(type) extern "C" __attribute__((externally_visible,visibility("default"))) type CALLBACK
|
||||
#define EXPORT_C_(type) extern "C" __attribute__((stdcall,externally_visible,visibility("default"))) type CALLBACK
|
||||
#endif
|
||||
|
||||
#ifdef _MSC_VER
|
||||
|
|
Loading…
Reference in New Issue