12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- #ifndef _SQL_BUILD_CONFIG_H_
- #define _SQL_BUILD_CONFIG_H_
- #ifndef CPPCONN_PUBLIC_FUNC
- #if defined(_WIN32)
-
- #ifdef mysqlcppconn_EXPORTS
- #define CPPCONN_PUBLIC_FUNC __declspec(dllexport)
- #else
-
- #ifdef CPPCONN_LIB_BUILD
- #define CPPCONN_PUBLIC_FUNC
- #else
-
- #define CPPCONN_PUBLIC_FUNC __declspec(dllimport)
- #endif
- #endif
-
- __pragma(warning (disable:4251))
- #else
- #define CPPCONN_PUBLIC_FUNC
-
- #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
- #endif
- #endif
- #endif
|