]> git.tdb.fi Git - libs/core.git/blob - source/core/mspcore_api.h
Add move semantics to Variant
[libs/core.git] / source / core / mspcore_api.h
1 #ifndef MSP_CORE_API_H_
2 #define MSP_CORE_API_H_
3
4 #if defined(_WIN32)
5 #if defined(MSPCORE_BUILD)
6 #define MSPCORE_API __declspec(dllexport)
7 #elif defined(MSPCORE_IMPORT)
8 #define MSPCORE_API __declspec(dllimport)
9 #else
10 #define MSPCORE_API
11 #endif
12 #elif defined(__GNUC__)
13 #define MSPCORE_API __attribute__((visibility("default")))
14 #else
15 #define MSPCORE_API
16 #endif
17
18 #endif