* src/cff/cffcmap.c: Include `cfferrs.h'.
* src/pfr/pfrdrivr.c: Include `pfrerror.h'. * src/sfnt/sfdriver.c: Include `sferrors.h'. * src/psaux/psobjs.h: Add declaration for `ps_parser_to_bytes'.
This commit is contained in:
parent
5e3614f584
commit
754d558893
|
@ -7,6 +7,11 @@
|
|||
* include/freetype/internal/ftserv.h (FT_SERVICE_SFNT_H): New macro.
|
||||
* src/base/ftobjs.c: Include FT_SERVICE_SFNT_H.
|
||||
|
||||
* src/cff/cffcmap.c: Include `cfferrs.h'.
|
||||
* src/pfr/pfrdrivr.c: Include `pfrerror.h'.
|
||||
* src/sfnt/sfdriver.c: Include `sferrors.h'.
|
||||
* src/psaux/psobjs.h: Add declaration for `ps_parser_to_bytes'.
|
||||
|
||||
2003-09-11 David Turner <david@freetype.org>
|
||||
|
||||
Introducing the concept of `module services'. This is the first
|
||||
|
|
|
@ -19,6 +19,8 @@
|
|||
#include "cffcmap.h"
|
||||
#include "cffload.h"
|
||||
|
||||
#include "cfferrs.h"
|
||||
|
||||
|
||||
/*************************************************************************/
|
||||
/*************************************************************************/
|
||||
|
|
|
@ -23,6 +23,8 @@
|
|||
#include "pfrdrivr.h"
|
||||
#include "pfrobjs.h"
|
||||
|
||||
#include "pfrerror.h"
|
||||
|
||||
|
||||
static FT_Error
|
||||
pfr_get_kerning( PFR_Face face,
|
||||
|
|
|
@ -108,6 +108,13 @@ FT_BEGIN_HEADER
|
|||
ps_parser_to_int( PS_Parser parser );
|
||||
|
||||
|
||||
FT_LOCAL( FT_Error )
|
||||
ps_parser_to_bytes( PS_Parser parser,
|
||||
FT_Byte* bytes,
|
||||
FT_Int max_bytes,
|
||||
FT_Int* pnum_bytes );
|
||||
|
||||
|
||||
FT_LOCAL( FT_Fixed )
|
||||
ps_parser_to_fixed( PS_Parser parser,
|
||||
FT_Int power_ten );
|
||||
|
|
|
@ -25,6 +25,8 @@
|
|||
#include "ttcmap.h"
|
||||
#include "sfobjs.h"
|
||||
|
||||
#include "sferrors.h"
|
||||
|
||||
#ifdef TT_CONFIG_OPTION_EMBEDDED_BITMAPS
|
||||
#include "ttsbit.h"
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue