Go to the documentation of this file.
6 #ifndef SOLO_RBPRM_CONFIG_HH
7 # define SOLO_RBPRM_CONFIG_HH
10 # define SOLO_RBPRM_VERSION_UNKNOWN_TAG 0
11 # define SOLO_RBPRM_VERSION "4.14.0"
12 # define SOLO_RBPRM_MAJOR_VERSION 4
13 # define SOLO_RBPRM_MINOR_VERSION 14
14 # define SOLO_RBPRM_PATCH_VERSION 0
16 #define SOLO_RBPRM_VERSION_AT_LEAST(major, minor, patch) (SOLO_RBPRM_MAJOR_VERSION>major || (SOLO_RBPRM_MAJOR_VERSION>=major && \
17 (SOLO_RBPRM_MINOR_VERSION>minor || (SOLO_RBPRM_MINOR_VERSION>=minor && \
18 SOLO_RBPRM_PATCH_VERSION>=patch))))
20 #define SOLO_RBPRM_VERSION_AT_MOST(major, minor, patch) (SOLO_RBPRM_MAJOR_VERSION<major || (SOLO_RBPRM_MAJOR_VERSION<=major && \
21 (SOLO_RBPRM_MINOR_VERSION<minor || (SOLO_RBPRM_MINOR_VERSION<=minor && \
22 SOLO_RBPRM_PATCH_VERSION<=patch))))
34 # if defined _WIN32 || defined __CYGWIN__
36 # define SOLO_RBPRM_DLLIMPORT __declspec(dllimport)
37 # define SOLO_RBPRM_DLLEXPORT __declspec(dllexport)
38 # define SOLO_RBPRM_DLLLOCAL
42 # define SOLO_RBPRM_DLLIMPORT __attribute__ ((visibility("default")))
43 # define SOLO_RBPRM_DLLEXPORT __attribute__ ((visibility("default")))
44 # define SOLO_RBPRM_DLLLOCAL __attribute__ ((visibility("hidden")))
47 # define SOLO_RBPRM_DLLIMPORT
48 # define SOLO_RBPRM_DLLEXPORT
49 # define SOLO_RBPRM_DLLLOCAL
53 # ifdef SOLO_RBPRM_STATIC
56 # define SOLO_RBPRM_DLLAPI
57 # define SOLO_RBPRM_LOCAL
61 # ifdef solo_rbprm_EXPORTS
62 # define SOLO_RBPRM_DLLAPI SOLO_RBPRM_DLLEXPORT
64 # define SOLO_RBPRM_DLLAPI SOLO_RBPRM_DLLIMPORT
66 # define SOLO_RBPRM_LOCAL SOLO_RBPRM_DLLLOCAL