Go to the documentation of this file.
10 # define AIG_VERSION_UNKNOWN_TAG 0
11 # define AIG_VERSION "1.2.1"
12 # define AIG_MAJOR_VERSION 1
13 # define AIG_MINOR_VERSION 2
14 # define AIG_PATCH_VERSION 1
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
62 # define AIG_DLLAPI AIG_DLLEXPORT
64 # define AIG_DLLAPI AIG_DLLIMPORT
66 # define AIG_LOCAL AIG_DLLLOCAL