eid-viewer
eid-viewer library
macros.h
1 #ifndef EID_VWR_MACROS_H
2 #define EID_VWR_MACROS_H
3 
4 #ifdef WIN32
5 #define DllExport __declspec( dllexport )
6 #else
7 #define DllExport __attribute__((visibility("default")))
8 #endif
9 
10 #endif