| 1 | #ifndef BASE_DYNAMIC_H |
|---|---|
| 2 | #define BASE_DYNAMIC_H |
| 3 | |
| 4 | #include "detect.h" |
| 5 | |
| 6 | #ifdef CONF_FAMILY_WINDOWS |
| 7 | #define DYNAMIC_EXPORT __declspec(dllexport) |
| 8 | #define DYNAMIC_IMPORT __declspec(dllimport) |
| 9 | #else |
| 10 | #define DYNAMIC_EXPORT |
| 11 | #define DYNAMIC_IMPORT |
| 12 | #endif |
| 13 | |
| 14 | #endif // BASE_DYNAMIC_H |
| 15 |