1
2
3
4
5
6 #ifndef CMAJOR_SYMBOLS_API_INCLUDED
7 #define CMAJOR_SYMBOLS_API_INCLUDED
8
9 #ifdef _WIN32
10
11 #ifdef SYMBOLS_EXPORTS
12 #define SYMBOLS_API __declspec(dllexport)
13 #else
14 #define SYMBOLS_API __declspec(dllimport)
15
16 #ifdef NDEBUG
17 #pragma comment(lib, "symbols.lib")
18 #elif defined(TRACE)
19 #pragma comment(lib, "symbolst.lib")
20 #else
21 #pragma comment(lib, "symbolsd.lib")
22 #endif
23
24 #endif
25
26 #else
27
28 #define SYMBOLS_API
29
30 #endif
31
32 #endif // CMAJOR_SYMBOLS_API_INCLUDED