mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
30c883bcfc
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1438 8ced0084-cf51-0410-be5f-012b33b47a6e
16 lines
203 B
C
16 lines
203 B
C
#ifdef _WIN32
|
|
|
|
#define EXPORT __declspec(dllexport)
|
|
#define CALL __cdecl
|
|
|
|
#else
|
|
|
|
#define EXPORT __attribute__ ((visibility("default")))
|
|
#define CALL
|
|
|
|
#endif
|
|
|
|
#if defined(__cplusplus)
|
|
extern "C" {
|
|
#endif
|