summaryrefslogtreecommitdiff
path: root/include/util/Exportable.hpp
blob: fc8269fb1dc487501bb2fdcf95d4048bbb858cd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef __EXPORTABLE_H
#define __EXPORTABLE_H

#ifndef _WIN32

#define DLL_VISIBLE
#define DLL_EXTERN

#else

#ifdef NODLL
#define DLL_VISIBLE
#define DLL_EXTERN
#else
#ifdef SHARED
#define DLL_VISIBLE __declspec(dllexport)
#define DLL_EXTERN
#else
#define DLL_VISIBLE __declspec(dllimport)
#define DLL_EXTERN
#endif
#endif

#endif // _WIN32

#endif