s/FT_EXPORT/FT_BASE/.
This commit is contained in:
parent
4859ac4add
commit
5d021d6996
|
@ -74,7 +74,7 @@ extern struct DOSIFace *IDOS;
|
||||||
|
|
||||||
/* documentation is in ftdebug.h */
|
/* documentation is in ftdebug.h */
|
||||||
|
|
||||||
FT_EXPORT_DEF( void )
|
FT_BASE_DEF( void )
|
||||||
FT_Message( const char* fmt, ... )
|
FT_Message( const char* fmt, ... )
|
||||||
{
|
{
|
||||||
va_list ap;
|
va_list ap;
|
||||||
|
@ -89,7 +89,7 @@ extern struct DOSIFace *IDOS;
|
||||||
|
|
||||||
/* documentation is in ftdebug.h */
|
/* documentation is in ftdebug.h */
|
||||||
|
|
||||||
FT_EXPORT_DEF( void )
|
FT_BASE_DEF( void )
|
||||||
FT_Panic( const char* fmt, ... )
|
FT_Panic( const char* fmt, ... )
|
||||||
{
|
{
|
||||||
va_list ap;
|
va_list ap;
|
||||||
|
@ -127,7 +127,7 @@ extern struct DOSIFace *IDOS;
|
||||||
|
|
||||||
/* documentation is in ftdebug.h */
|
/* documentation is in ftdebug.h */
|
||||||
|
|
||||||
FT_EXPORT_DEF( FT_Int )
|
FT_BASE_DEF( FT_Int )
|
||||||
FT_Trace_Get_Count( void )
|
FT_Trace_Get_Count( void )
|
||||||
{
|
{
|
||||||
return trace_count;
|
return trace_count;
|
||||||
|
@ -136,7 +136,7 @@ extern struct DOSIFace *IDOS;
|
||||||
|
|
||||||
/* documentation is in ftdebug.h */
|
/* documentation is in ftdebug.h */
|
||||||
|
|
||||||
FT_EXPORT_DEF( const char * )
|
FT_BASE_DEF( const char * )
|
||||||
FT_Trace_Get_Name( FT_Int idx )
|
FT_Trace_Get_Name( FT_Int idx )
|
||||||
{
|
{
|
||||||
int max = FT_Trace_Get_Count();
|
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 )
|
FT_Trace_Get_Count( void )
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
FT_EXPORT_DEF( const char * )
|
FT_BASE_DEF( const char * )
|
||||||
FT_Trace_Get_Name( FT_Int idx )
|
FT_Trace_Get_Name( FT_Int idx )
|
||||||
{
|
{
|
||||||
FT_UNUSED( idx );
|
FT_UNUSED( idx );
|
||||||
|
|
|
@ -377,7 +377,7 @@ Free_VecPooled( APTR poolHeader,
|
||||||
|
|
||||||
/* documentation is in ftobjs.h */
|
/* documentation is in ftobjs.h */
|
||||||
|
|
||||||
FT_EXPORT_DEF( FT_Error )
|
FT_BASE_DEF( FT_Error )
|
||||||
FT_Stream_Open( FT_Stream stream,
|
FT_Stream_Open( FT_Stream stream,
|
||||||
const char* filepathname )
|
const char* filepathname )
|
||||||
{
|
{
|
||||||
|
@ -463,7 +463,7 @@ Free_VecPooled( APTR poolHeader,
|
||||||
|
|
||||||
/* documentation is in ftobjs.h */
|
/* documentation is in ftobjs.h */
|
||||||
|
|
||||||
FT_EXPORT_DEF( FT_Memory )
|
FT_BASE_DEF( FT_Memory )
|
||||||
FT_New_Memory( void )
|
FT_New_Memory( void )
|
||||||
{
|
{
|
||||||
FT_Memory memory;
|
FT_Memory memory;
|
||||||
|
@ -503,7 +503,7 @@ Free_VecPooled( APTR poolHeader,
|
||||||
|
|
||||||
/* documentation is in ftobjs.h */
|
/* documentation is in ftobjs.h */
|
||||||
|
|
||||||
FT_EXPORT_DEF( void )
|
FT_BASE_DEF( void )
|
||||||
FT_Done_Memory( FT_Memory memory )
|
FT_Done_Memory( FT_Memory memory )
|
||||||
{
|
{
|
||||||
#ifdef FT_DEBUG_MEMORY
|
#ifdef FT_DEBUG_MEMORY
|
||||||
|
|
Loading…
Reference in New Issue