Use FT_LOCAL instead of FT_LOCAL_DEF for function declarations.
This commit is contained in:
parent
00c01c130b
commit
44438c2c47
|
@ -1,3 +1,7 @@
|
|||
2004-04-27 Masatake YAMATO <jet@gyve.org>
|
||||
|
||||
* src/truetype/ttgxvar.h: Use FT_LOCAL instead of FT_LOCAL_DEF
|
||||
for function declarations.
|
||||
|
||||
2004-04-25 George Williams <gww@silcom.com>
|
||||
|
||||
|
|
|
@ -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 );
|
||||
|
||||
|
|
Loading…
Reference in New Issue