Go to the documentation of this file. 6 #ifndef ANYMAL_RBPRM_CONFIG_HH 7 # define ANYMAL_RBPRM_CONFIG_HH 10 # define ANYMAL_RBPRM_VERSION_UNKNOWN_TAG 0 // Used to mention that the current version is unknown. 11 # define ANYMAL_RBPRM_VERSION "4.13.0" 12 # define ANYMAL_RBPRM_MAJOR_VERSION 4 13 # define ANYMAL_RBPRM_MINOR_VERSION 13 14 # define ANYMAL_RBPRM_PATCH_VERSION 0 16 #define ANYMAL_RBPRM_VERSION_AT_LEAST(major, minor, patch) (ANYMAL_RBPRM_MAJOR_VERSION>major || (ANYMAL_RBPRM_MAJOR_VERSION>=major && \ 17 (ANYMAL_RBPRM_MINOR_VERSION>minor || (ANYMAL_RBPRM_MINOR_VERSION>=minor && \ 18 ANYMAL_RBPRM_PATCH_VERSION>=patch)))) 20 #define ANYMAL_RBPRM_VERSION_AT_MOST(major, minor, patch) (ANYMAL_RBPRM_MAJOR_VERSION<major || (ANYMAL_RBPRM_MAJOR_VERSION<=major && \ 21 (ANYMAL_RBPRM_MINOR_VERSION<minor || (ANYMAL_RBPRM_MINOR_VERSION<=minor && \ 22 ANYMAL_RBPRM_PATCH_VERSION<=patch)))) 34 # if defined _WIN32 || defined __CYGWIN__ 36 # define ANYMAL_RBPRM_DLLIMPORT __declspec(dllimport) 37 # define ANYMAL_RBPRM_DLLEXPORT __declspec(dllexport) 38 # define ANYMAL_RBPRM_DLLLOCAL 42 # define ANYMAL_RBPRM_DLLIMPORT __attribute__ ((visibility("default"))) 43 # define ANYMAL_RBPRM_DLLEXPORT __attribute__ ((visibility("default"))) 44 # define ANYMAL_RBPRM_DLLLOCAL __attribute__ ((visibility("hidden"))) 47 # define ANYMAL_RBPRM_DLLIMPORT 48 # define ANYMAL_RBPRM_DLLEXPORT 49 # define ANYMAL_RBPRM_DLLLOCAL 50 # endif // __GNUC__ >= 4 51 # endif // defined _WIN32 || defined __CYGWIN__ 53 # ifdef ANYMAL_RBPRM_STATIC 56 # define ANYMAL_RBPRM_DLLAPI 57 # define ANYMAL_RBPRM_LOCAL 61 # ifdef anymal_rbprm_EXPORTS 62 # define ANYMAL_RBPRM_DLLAPI ANYMAL_RBPRM_DLLEXPORT 64 # define ANYMAL_RBPRM_DLLAPI ANYMAL_RBPRM_DLLIMPORT 65 # endif // ANYMAL_RBPRM_EXPORTS 66 # define ANYMAL_RBPRM_LOCAL ANYMAL_RBPRM_DLLLOCAL 67 # endif // ANYMAL_RBPRM_STATIC