s/FT_EXPORT/FT_BASE/.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
diff --git a/builds/amiga/src/base/ftdebug.c b/builds/amiga/src/base/ftdebug.c
index 75cc66d..5284e69 100644
--- a/builds/amiga/src/base/ftdebug.c
+++ b/builds/amiga/src/base/ftdebug.c
@@ -74,7 +74,7 @@ extern struct DOSIFace *IDOS;
/* documentation is in ftdebug.h */
- FT_EXPORT_DEF( void )
+ FT_BASE_DEF( void )
FT_Message( const char* fmt, ... )
{
va_list ap;
@@ -89,7 +89,7 @@ extern struct DOSIFace *IDOS;
/* documentation is in ftdebug.h */
- FT_EXPORT_DEF( void )
+ FT_BASE_DEF( void )
FT_Panic( const char* fmt, ... )
{
va_list ap;
@@ -127,7 +127,7 @@ extern struct DOSIFace *IDOS;
/* documentation is in ftdebug.h */
- FT_EXPORT_DEF( FT_Int )
+ FT_BASE_DEF( FT_Int )
FT_Trace_Get_Count( void )
{
return trace_count;
@@ -136,7 +136,7 @@ extern struct DOSIFace *IDOS;
/* documentation is in ftdebug.h */
- FT_EXPORT_DEF( const char * )
+ FT_BASE_DEF( const char * )
FT_Trace_Get_Name( FT_Int idx )
{
int max = FT_Trace_Get_Count();
@@ -253,14 +253,14 @@ extern struct DOSIFace *IDOS;
}
- FT_EXPORT_DEF( FT_Int )
+ FT_BASE_DEF( FT_Int )
FT_Trace_Get_Count( void )
{
return 0;
}
- FT_EXPORT_DEF( const char * )
+ FT_BASE_DEF( const char * )
FT_Trace_Get_Name( FT_Int idx )
{
FT_UNUSED( idx );
diff --git a/builds/amiga/src/base/ftsystem.c b/builds/amiga/src/base/ftsystem.c
index 00ee3d5..6a6f212 100644
--- a/builds/amiga/src/base/ftsystem.c
+++ b/builds/amiga/src/base/ftsystem.c
@@ -377,7 +377,7 @@ Free_VecPooled( APTR poolHeader,
/* documentation is in ftobjs.h */
- FT_EXPORT_DEF( FT_Error )
+ FT_BASE_DEF( FT_Error )
FT_Stream_Open( FT_Stream stream,
const char* filepathname )
{
@@ -463,7 +463,7 @@ Free_VecPooled( APTR poolHeader,
/* documentation is in ftobjs.h */
- FT_EXPORT_DEF( FT_Memory )
+ FT_BASE_DEF( FT_Memory )
FT_New_Memory( void )
{
FT_Memory memory;
@@ -503,7 +503,7 @@ Free_VecPooled( APTR poolHeader,
/* documentation is in ftobjs.h */
- FT_EXPORT_DEF( void )
+ FT_BASE_DEF( void )
FT_Done_Memory( FT_Memory memory )
{
#ifdef FT_DEBUG_MEMORY