From 58552580ad5917493daa7ccff16ef6f460cca871 Mon Sep 17 00:00:00 2001 From: Tom Kacvinsky Date: Sat, 30 Dec 2000 01:13:50 +0000 Subject: [PATCH] Changed the structures CFF_Encoding and CFF_Charset. --- include/freetype/internal/t2types.h | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/include/freetype/internal/t2types.h b/include/freetype/internal/t2types.h index dae7722fa..a45065280 100644 --- a/include/freetype/internal/t2types.h +++ b/include/freetype/internal/t2types.h @@ -65,26 +65,22 @@ FT_BEGIN_HEADER typedef struct CFF_Encoding_ { - FT_Stream stream; - - FT_UInt format; - FT_ULong offset; - FT_UInt size; + FT_UInt format; + FT_ULong offset; - FT_Byte* bytes; + FT_UShort* sids; + FT_UShort* codes; } CFF_Encoding; typedef struct CFF_Charset_ { - FT_Stream stream; - FT_UInt format; - FT_ULong offset; - FT_UInt size; - - FT_Byte* bytes; + FT_UInt format; + FT_ULong offset; + + FT_UShort* sids; } CFF_Charset;