From 44438c2c47228eef62b1987d1658d59de81c1a5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yamato=2C=20Masatake=20=28=E5=A4=A7=E5=92=8C=E6=AD=A3?= =?UTF-8?q?=E6=AD=A6=29?= Date: Tue, 27 Apr 2004 04:02:16 +0000 Subject: [PATCH] Use FT_LOCAL instead of FT_LOCAL_DEF for function declarations. --- ChangeLog | 4 ++++ src/truetype/ttgxvar.h | 12 ++++++------ 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index 417191ec8..dd1c28679 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2004-04-27 Masatake YAMATO + + * src/truetype/ttgxvar.h: Use FT_LOCAL instead of FT_LOCAL_DEF + for function declarations. 2004-04-25 George Williams diff --git a/src/truetype/ttgxvar.h b/src/truetype/ttgxvar.h index 3a1c4b5d7..650cad9ab 100644 --- a/src/truetype/ttgxvar.h +++ b/src/truetype/ttgxvar.h @@ -141,34 +141,34 @@ FT_BEGIN_HEADER #define TTAG_slnt FT_MAKE_TAG( 's', 'l', 'n', 't' ) - FT_LOCAL_DEF( FT_Error ) + FT_LOCAL( FT_Error ) TT_Set_MM_Blend( TT_Face face, FT_UInt num_coords, FT_Fixed* coords ); - FT_LOCAL_DEF( FT_Error ) + FT_LOCAL( FT_Error ) TT_Set_Var_Design( TT_Face face, FT_UInt num_coords, FT_Fixed* coords ); - FT_LOCAL_DEF( FT_Error ) + FT_LOCAL( FT_Error ) TT_Get_MM_Var( TT_Face face, FT_MM_Var* *master ); - FT_LOCAL_DEF( FT_Error ) + FT_LOCAL( FT_Error ) tt_face_vary_cvt( TT_Face face, FT_Stream stream ); - FT_LOCAL_DEF( FT_Error ) + FT_LOCAL( FT_Error ) TT_Vary_Get_Glyph_Deltas( TT_Face face, FT_UInt glyph_index, FT_Vector* *deltas, FT_UInt n_points ); - FT_LOCAL_DEF( void ) + FT_LOCAL( void ) tt_done_blend( FT_Memory memory, GX_Blend blend );