Go to the documentation of this file.
27 #if defined(_MSC_VER) || defined(WIN32) || defined(_WIN32)
30 #define DSOEXPORT __declspec(dllexport)
33 #define DSOEXPORT // __declspec(dllimport)
37 #elif defined(__OS2__)
39 #define DSOEXPORT __declspec(dllexport)
42 #define DSOEXPORT // __declspec(dllimport)
48 #ifdef HAVE_GNUC_VISIBILITY
49 #define DSOEXPORT __attribute__ ((visibility("default")))
50 #define DSOLOCAL __attribute__ ((visibility("hidden")))
51 #elif defined(__SUNPRO_C) && (__SUNPRO_C >= 0x550)
52 #define DSOEXPORT __global
53 #define DSOLOCAL __hidden
61 # define DSOTEXPORT DSOEXPORT