Go to the documentation of this file. 1 #ifndef CNOID_BODYPLUGIN_EXPORTDECL_H_INCLUDED 2 # define CNOID_BODYPLUGIN_EXPORTDECL_H_INCLUDED 4 # if defined _WIN32 || defined __CYGWIN__ 5 # define CNOID_BODYPLUGIN_DLLIMPORT __declspec(dllimport) 6 # define CNOID_BODYPLUGIN_DLLEXPORT __declspec(dllexport) 7 # define CNOID_BODYPLUGIN_DLLLOCAL 10 # define CNOID_BODYPLUGIN_DLLIMPORT __attribute__ ((visibility("default"))) 11 # define CNOID_BODYPLUGIN_DLLEXPORT __attribute__ ((visibility("default"))) 12 # define CNOID_BODYPLUGIN_DLLLOCAL __attribute__ ((visibility("hidden"))) 14 # define CNOID_BODYPLUGIN_DLLIMPORT 15 # define CNOID_BODYPLUGIN_DLLEXPORT 16 # define CNOID_BODYPLUGIN_DLLLOCAL 20 # ifdef CNOID_BODYPLUGIN_STATIC 21 # define CNOID_BODYPLUGIN_DLLAPI 22 # define CNOID_BODYPLUGIN_LOCAL 24 # ifdef CnoidBodyPlugin_EXPORTS 25 # define CNOID_BODYPLUGIN_DLLAPI CNOID_BODYPLUGIN_DLLEXPORT 27 # define CNOID_BODYPLUGIN_DLLAPI CNOID_BODYPLUGIN_DLLIMPORT 29 # define CNOID_BODYPLUGIN_LOCAL CNOID_BODYPLUGIN_DLLLOCAL 37 #define CNOID_EXPORT CNOID_BODYPLUGIN_DLLAPI