9 #define HELPER_DLL_EXPORT __declspec(dllexport)
10 #define HELPER_DLL_IMPORT __declspec(dllimport)
11 #elif defined(__GNUC__)
13 #define HELPER_DLL_EXPORT __attribute__((visibility("default")))
14 #define HELPER_DLL_IMPORT __attribute__((visibility("default")))
17 #define HELPER_DLL_EXPORT
18 #define HELPER_DLL_IMPORT
19 #pragma warning Unknown dynamic link import/export semantics.
24 #define DMXSDK_API HELPER_DLL_EXPORT
26 #define DMXSDK_API HELPER_DLL_IMPORT