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