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

Change DLL_EXPORT to FB_DLL_EXPORT in intl module to match engine (needed for INTL_BUILTIN on Linux)

This commit is contained in:
skidder 2003-11-23 16:44:26 +00:00
parent d4280ad958
commit 184ffe896c
4 changed files with 11 additions and 8 deletions

View File

@ -286,7 +286,7 @@ void LD_assert(const SCHAR* filename, int lineno)
return (0);\
}
USHORT DLL_EXPORT LD_lookup(USHORT objtype,
USHORT FB_DLL_EXPORT LD_lookup(USHORT objtype,
FPTR_SHORT * fun, SSHORT parm1, SSHORT parm2)
{
/**************************************

View File

@ -56,9 +56,9 @@
#define UINT16 USHORT
#ifdef WIN_NT
#define DLL_EXPORT __declspec(dllexport)
#define FB_DLL_EXPORT __declspec(dllexport)
#else
#define DLL_EXPORT
#define FB_DLL_EXPORT
#endif
@ -481,9 +481,12 @@ struct CompressPair {
// VCS AREA
//-----------------------------------------------------------------
// $Header: /home/job/firebird/cvs-backup/firebird2/src/intl/ld.h,v 1.21 2003-09-16 10:33:30 aafemt Exp $
// $Header: /home/job/firebird/cvs-backup/firebird2/src/intl/ld.h,v 1.22 2003-11-23 16:44:26 skidder Exp $
// $Log: not supported by cvs2svn $
// Revision 1.21 2003/09/16 10:33:30 aafemt
// 'struct' removal
//
// Revision 1.20 2003/08/21 16:22:11 brodsom
// -Replace STATIC with static
// -Remove a few unused macros

View File

@ -89,7 +89,7 @@ void LD2_assert(filename, lineno)
USHORT DLL_EXPORT LD2_lookup(USHORT objtype,
USHORT FB_DLL_EXPORT LD2_lookup(USHORT objtype,
FPTR_SHORT * fun, SSHORT parm1, SSHORT parm2)
{

View File

@ -29,11 +29,11 @@ extern "C" {
#endif
#ifdef DEV_BUILD
void DLL_EXPORT LD_assert(const SCHAR*, int);
void FB_DLL_EXPORT LD_assert(const SCHAR*, int);
#endif
USHORT DLL_EXPORT LD_lookup(USHORT, FPTR_SHORT*, SSHORT, SSHORT);
USHORT DLL_EXPORT LD2_lookup(USHORT, FPTR_SHORT*, SSHORT, SSHORT);
USHORT FB_DLL_EXPORT LD_lookup(USHORT, FPTR_SHORT*, SSHORT, SSHORT);
USHORT FB_DLL_EXPORT LD2_lookup(USHORT, FPTR_SHORT*, SSHORT, SSHORT);
#ifdef __cplusplus
} /* extern "C" */