PIR Library  2
 All Classes Files Functions Variables Typedefs Macros Pages
pirlib2_global.h
1 #ifndef PIRLIB2_GLOBAL_H
2 #define PIRLIB2_GLOBAL_H
3 
4 
5 #ifdef WIN32
6  #ifndef PIRLIB2_STATIC
7  #define DECL_EXPORT __declspec(dllexport)
8  #define DECL_IMPORT __declspec(dllimport)
9  #else
10  #define DECL_EXPORT
11  #define DECL_IMPORT
12  #endif
13 #else
14  #define DECL_EXPORT
15  #define DECL_IMPORT
16 #endif
17 
18 #if defined(PIRLIB2_LIBRARY)
19 # define PIRLIB2SHARED_EXPORT DECL_EXPORT
20 #else
21 # define PIRLIB2SHARED_EXPORT DECL_IMPORT
22 #endif
23 
24 
25 #endif // PIRLIB2_GLOBAL_H