Equalizer  1.10.1
Parallel Rendering Framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
seq/api.h
Go to the documentation of this file.
1 // generated by CommonLibrary.cmake, do not edit.
2 
8 #ifndef SEQUEL_API_H
9 #define SEQUEL_API_H
10 
11 #include <eq/defines.h>
12 
13 #if defined(_MSC_VER) || defined(__declspec)
14 # define SEQ_DLLEXPORT __declspec(dllexport)
15 # define SEQ_DLLIMPORT __declspec(dllimport)
16 #else // _MSC_VER
17 # define SEQ_DLLEXPORT
18 # define SEQ_DLLIMPORT
19 #endif // _MSC_VER
20 
21 #if defined(SEQUEL_STATIC)
22 # define SEQ_API
23 #elif defined(SEQUEL_SHARED)
24 # define SEQ_API SEQ_DLLEXPORT
25 #else
26 # define SEQ_API SEQ_DLLIMPORT
27 #endif
28 
29 #if defined(SEQUEL_SHARED_INL)
30 # define SEQ_INL SEQ_DLLEXPORT
31 #else
32 # define SEQ_INL SEQ_DLLIMPORT
33 #endif
34 
35 #endif