changing the linkage type of

FT_New_GlyphSlot and FT_Done_GlyphSlot to
BASE_DEF instead of FT_EXPORT_DEF
This commit is contained in:
David Turner 2000-10-03 18:02:02 +00:00
parent 896b604ca8
commit a0be99f131
2 changed files with 7 additions and 6 deletions

View File

@ -207,10 +207,11 @@
FT_EXPORT_DEF( FT_Error ) FT_Done_Size( FT_Size size ); FT_EXPORT_DEF( FT_Error ) FT_Done_Size( FT_Size size );
FT_EXPORT_DEF( FT_Error ) FT_New_GlyphSlot( FT_Face face,
FT_GlyphSlot* aslot );
FT_EXPORT_DEF( void ) FT_Done_GlyphSlot( FT_GlyphSlot slot ); BASE_DEF( FT_Error ) FT_New_GlyphSlot( FT_Face face,
FT_GlyphSlot* aslot );
BASE_DEF( void ) FT_Done_GlyphSlot( FT_GlyphSlot slot );
/*************************************************************************/ /*************************************************************************/

View File

@ -764,8 +764,8 @@
/* <Return> */ /* <Return> */
/* FreeType error code. 0 means success. */ /* FreeType error code. 0 means success. */
/* */ /* */
FT_EXPORT_FUNC( FT_Error ) FT_New_GlyphSlot( FT_Face face, BASE_FUNC( FT_Error ) FT_New_GlyphSlot( FT_Face face,
FT_GlyphSlot* aslot ) FT_GlyphSlot* aslot )
{ {
FT_Error error; FT_Error error;
FT_Driver driver; FT_Driver driver;
@ -818,7 +818,7 @@
/* <Input> */ /* <Input> */
/* slot :: A handle to a target glyph slot. */ /* slot :: A handle to a target glyph slot. */
/* */ /* */
FT_EXPORT_FUNC( void ) FT_Done_GlyphSlot( FT_GlyphSlot slot ) BASE_FUNC( void ) FT_Done_GlyphSlot( FT_GlyphSlot slot )
{ {
if ( slot ) if ( slot )
{ {