Go to the documentation of this file. 10 # define AIG_VERSION_UNKNOWN_TAG 0 // Used to mention that the current version is unknown. 11 # define AIG_VERSION "1.1.0" 12 # define AIG_MAJOR_VERSION 1 13 # define AIG_MINOR_VERSION 1 14 # define AIG_PATCH_VERSION 0 16 #define AIG_VERSION_AT_LEAST(major, minor, patch) (AIG_MAJOR_VERSION>major || (AIG_MAJOR_VERSION>=major && \ 17 (AIG_MINOR_VERSION>minor || (AIG_MINOR_VERSION>=minor && \ 18 AIG_PATCH_VERSION>=patch)))) 20 #define AIG_VERSION_AT_MOST(major, minor, patch) (AIG_MAJOR_VERSION<major || (AIG_MAJOR_VERSION<=major && \ 21 (AIG_MINOR_VERSION<minor || (AIG_MINOR_VERSION<=minor && \ 22 AIG_PATCH_VERSION<=patch)))) 34 # if defined _WIN32 || defined __CYGWIN__ 36 # define AIG_DLLIMPORT __declspec(dllimport) 37 # define AIG_DLLEXPORT __declspec(dllexport) 42 # define AIG_DLLIMPORT __attribute__ ((visibility("default"))) 43 # define AIG_DLLEXPORT __attribute__ ((visibility("default"))) 44 # define AIG_DLLLOCAL __attribute__ ((visibility("hidden"))) 47 # define AIG_DLLIMPORT 48 # define AIG_DLLEXPORT 50 # endif // __GNUC__ >= 4 51 # endif // defined _WIN32 || defined __CYGWIN__ 62 # define AIG_DLLAPI AIG_DLLEXPORT 64 # define AIG_DLLAPI AIG_DLLIMPORT 65 # endif // AIG_EXPORTS 66 # define AIG_LOCAL AIG_DLLLOCAL