From 97550fc45a5e40aeaa62146f3c0f02d2f0399cb9 Mon Sep 17 00:00:00 2001 From: Tom Kacvinsky Date: Sat, 30 Dec 2000 01:13:07 +0000 Subject: [PATCH] Chnaged the structures CFF_Charset and CFF_Encoding. --- include/freetype/internal/cfftypes.h | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/include/freetype/internal/cfftypes.h b/include/freetype/internal/cfftypes.h index ff8d37584..c2459316f 100644 --- a/include/freetype/internal/cfftypes.h +++ b/include/freetype/internal/cfftypes.h @@ -66,20 +66,22 @@ FT_BEGIN_HEADER /* a compact CFF Charset table */ typedef struct CFF_Charset_ { - FT_ULong offset; - FT_UInt size; - FT_UInt format; - FT_Byte* bytes; + FT_UInt format; + FT_ULong offset; + + FT_UShort* sids; } CFF_Charset; + /* a compact CFF Encoding table */ typedef struct CFF_Encoding_ { - FT_ULong offset; - FT_UInt size; - FT_UInt format; - FT_Byte* bytes; + FT_UInt format; + FT_ULong offset; + + FT_UShort* sids; + FT_UShort* codes; } CFF_Encoding;