Changed the structures CFF_Encoding and CFF_Charset.
This commit is contained in:
parent
97550fc45a
commit
fc1de559ad
|
@ -65,26 +65,22 @@ FT_BEGIN_HEADER
|
||||||
|
|
||||||
typedef struct CFF_Encoding_
|
typedef struct CFF_Encoding_
|
||||||
{
|
{
|
||||||
FT_Stream stream;
|
FT_UInt format;
|
||||||
|
FT_ULong offset;
|
||||||
|
|
||||||
FT_UInt format;
|
FT_UShort* sids;
|
||||||
FT_ULong offset;
|
FT_UShort* codes;
|
||||||
FT_UInt size;
|
|
||||||
|
|
||||||
FT_Byte* bytes;
|
|
||||||
|
|
||||||
} CFF_Encoding;
|
} CFF_Encoding;
|
||||||
|
|
||||||
|
|
||||||
typedef struct CFF_Charset_
|
typedef struct CFF_Charset_
|
||||||
{
|
{
|
||||||
FT_Stream stream;
|
|
||||||
|
|
||||||
FT_UInt format;
|
FT_UInt format;
|
||||||
FT_ULong offset;
|
FT_ULong offset;
|
||||||
FT_UInt size;
|
|
||||||
|
FT_UShort* sids;
|
||||||
FT_Byte* bytes;
|
|
||||||
|
|
||||||
} CFF_Charset;
|
} CFF_Charset;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue