8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 06:43:04 +01:00

frontported minor visibility issue on darwin

This commit is contained in:
alexpeshkoff 2009-01-22 09:17:27 +00:00
parent ce5dee623e
commit ae2a0d355c
2 changed files with 6 additions and 2 deletions

View File

@ -53,7 +53,9 @@ using namespace NAMESPACE;
#endif
#if defined(WIN_NT)
#define FB_DLL_EXPORT __declspec(dllexport)
#define FB_DLL_EXPORT __declspec(dllexport)
#elif defined(DARWIN)
#define FB_DLL_EXPORT API_ROUTINE
#else
#define FB_DLL_EXPORT
#endif

View File

@ -55,8 +55,10 @@
#define UINT16 USHORT
#ifdef WIN_NT
#if defined(WIN_NT)
#define FB_DLL_EXPORT __declspec(dllexport)
#elif defined(DARWIN)
#define FB_DLL_EXPORT API_ROUTINE
#else
#define FB_DLL_EXPORT
#endif