1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- #ifndef MYSQLX_COMMON_API_H
- #define MYSQLX_COMMON_API_H
- #if defined _MSC_VER
- #define DLL_EXPORT __declspec(dllexport)
- #define DLL_IMPORT __declspec(dllimport)
- #define DLL_LOCAL
- #elif __GNUC__ >= 4
- #define DLL_EXPORT __attribute__ ((visibility ("default")))
- #define DLL_IMPORT
- #define DLL_LOCAL __attribute__ ((visibility ("hidden")))
- #elif defined __SUNPRO_CC || defined __SUNPRO_C
- #define DLL_EXPORT __global
- #define DLL_IMPORT __global
- #define DLL_LOCAL __hidden
- #else
- #define DLL_EXPORT
- #define DLL_IMPORT
- #define DLL_LOCAL
- #endif
- #if defined CONCPP_BUILD_SHARED
- #define PUBLIC_API DLL_EXPORT
- #define INTERNAL DLL_LOCAL
- #elif defined CONCPP_BUILD_STATIC
- #define PUBLIC_API
- #define INTERNAL
- #elif !defined STATIC_CONCPP
- #define PUBLIC_API DLL_IMPORT
- #define INTERNAL
- #else
- #define PUBLIC_API
- #define INTERNAL
- #endif
- #endif
|