Go to the documentation of this file.
5 #if defined _WIN32 || defined __CYGWIN__
7 # define JRLQP_DLLIMPORT __declspec(dllimport)
8 # define JRLQP_DLLEXPORT __declspec(dllexport)
9 # define JRLQP_DLLLOCAL
13 # define JRLQP_DLLIMPORT __attribute__((visibility("default")))
14 # define JRLQP_DLLEXPORT __attribute__((visibility("default")))
15 # define JRLQP_DLLLOCAL __attribute__((visibility("hidden")))
18 # define JRLQP_DLLIMPORT
19 # define JRLQP_DLLEXPORT
20 # define JRLQP_DLLLOCAL
21 # endif // __GNUC__ >= 4
22 #endif // defined _WIN32 || defined __CYGWIN__
33 # define JRLQP_DLLAPI JRLQP_DLLEXPORT
35 # define JRLQP_DLLAPI JRLQP_DLLIMPORT
36 # endif // JRLQP_EXPORTS
37 # define JRLQP_LOCAL JRLQP_DLLLOCAL
38 #endif // JRLQP_STATIC