UNPKG

420 Btext/x-cView Raw
1#ifndef DLL_PUBLIC
2
3#if defined _WIN32
4 #ifdef __GNUC__
5 #define DLL_PUBLIC __attribute__ ((dllexport))
6 #else
7 #define DLL_PUBLIC __declspec(dllexport)
8 #endif
9 #define DLL_LOCAL
10#else
11 #if __GNUC__ >= 4
12 #define DLL_PUBLIC __attribute__ ((visibility ("default")))
13 #define DLL_LOCAL __attribute__ ((visibility ("hidden")))
14 #else
15 #define DLL_PUBLIC
16 #define DLL_LOCAL
17 #endif
18#endif
19
20#endif