Go to the documentation of this file.
17 #if defined _WIN32 || defined __CYGWIN__
19 # define MC_TVM_DLLIMPORT __declspec(dllimport)
20 # define MC_TVM_DLLEXPORT __declspec(dllexport)
21 # define MC_TVM_DLLLOCAL
25 # define MC_TVM_DLLIMPORT __attribute__((visibility("default")))
26 # define MC_TVM_DLLEXPORT __attribute__((visibility("default")))
27 # define MC_TVM_DLLLOCAL __attribute__((visibility("hidden")))
30 # define MC_TVM_DLLIMPORT
31 # define MC_TVM_DLLEXPORT
32 # define MC_TVM_DLLLOCAL
33 # endif // __GNUC__ >= 4
34 #endif // defined _WIN32 || defined __CYGWIN__
39 # define MC_TVM_DLLAPI
44 # ifdef MC_TVM_EXPORTS
45 # define MC_TVM_DLLAPI MC_TVM_DLLEXPORT
47 # define MC_TVM_DLLAPI MC_TVM_DLLIMPORT
48 # endif // MC_TVM_EXPORTS
49 # define MC_TVM_LOCAL MC_TVM_DLLLOCAL
50 #endif // MC_TVM_STATIC