Go to the documentation of this file. 1 #ifndef CNOID_BASE_EXPORTDECL_H_INCLUDED 2 # define CNOID_BASE_EXPORTDECL_H_INCLUDED 4 # if defined _WIN32 || defined __CYGWIN__ 5 # define CNOID_BASE_DLLIMPORT __declspec(dllimport) 6 # define CNOID_BASE_DLLEXPORT __declspec(dllexport) 7 # define CNOID_BASE_DLLLOCAL 10 # define CNOID_BASE_DLLIMPORT __attribute__ ((visibility("default"))) 11 # define CNOID_BASE_DLLEXPORT __attribute__ ((visibility("default"))) 12 # define CNOID_BASE_DLLLOCAL __attribute__ ((visibility("hidden"))) 14 # define CNOID_BASE_DLLIMPORT 15 # define CNOID_BASE_DLLEXPORT 16 # define CNOID_BASE_DLLLOCAL 20 # ifdef CNOID_BASE_STATIC 21 # define CNOID_BASE_DLLAPI 22 # define CNOID_BASE_LOCAL 24 # ifdef CnoidBase_EXPORTS 25 # define CNOID_BASE_DLLAPI CNOID_BASE_DLLEXPORT 27 # define CNOID_BASE_DLLAPI CNOID_BASE_DLLIMPORT 29 # define CNOID_BASE_LOCAL CNOID_BASE_DLLLOCAL 37 #define CNOID_EXPORT CNOID_BASE_DLLAPI