Go to the documentation of this file.
5 #if defined _WIN32 || defined __CYGWIN__
7 # define TVM_DLLIMPORT __declspec(dllimport)
8 # define TVM_DLLEXPORT __declspec(dllexport)
13 # define TVM_DLLIMPORT __attribute__((visibility("default")))
14 # define TVM_DLLEXPORT __attribute__((visibility("default")))
15 # define TVM_DLLLOCAL __attribute__((visibility("hidden")))
18 # define TVM_DLLIMPORT
19 # define TVM_DLLEXPORT
33 # define TVM_DLLAPI TVM_DLLEXPORT
35 # define TVM_DLLAPI TVM_DLLIMPORT
37 # define TVM_LOCAL TVM_DLLLOCAL