Linux build fix
[dolphin.git] / Source / PluginSpecs / ExportProlog.h
blob99f5ca30641a0c50a0627bc0b7ae334f1673ad6f
1 #ifdef _WIN32
3 #define EXPORT __declspec(dllexport)
4 #define CALL __cdecl
6 #else
8 #define EXPORT __attribute__ ((visibility("default")))
9 #define CALL
11 #endif
13 #if defined(__cplusplus)
14 extern "C" {
15 #endif