Tellurium Plugin C API  1.0.0
Plugin Framework for Tellurium
 All Data Structures Files Functions Variables Typedefs Enumerations Macros Groups Pages
telplugins_exporter.h
Go to the documentation of this file.
1 
42 #ifndef telplugins_exporterH
43 #define telplugins_exporterH
44 
45 //Export/Import API functions
46 #if defined(_WIN32)
47  #if defined(STATIC_TLP_C)
48  #define TLP_C_DS
49  #else
50  #if defined(EXPORT_RRP)
51  #define TLP_C_DS __declspec(dllexport)
52  #else
53  #define TLP_C_DS __declspec(dllimport)
54  #endif
55  #endif
56 #else
57  #define TLP_C_DS
58 #endif
59 
60 #endif
61