OLD | NEW |
1 /***************************************************************************/ | 1 /***************************************************************************/ |
2 /* */ | 2 /* */ |
3 /* cffparse.h */ | 3 /* cffparse.h */ |
4 /* */ | 4 /* */ |
5 /* CFF token stream parser (specification) */ | 5 /* CFF token stream parser (specification) */ |
6 /* */ | 6 /* */ |
7 /* Copyright 1996-2001, 2002, 2003 by */ | 7 /* Copyright 1996-2003, 2011 by */ |
8 /* David Turner, Robert Wilhelm, and Werner Lemberg. */ | 8 /* David Turner, Robert Wilhelm, and Werner Lemberg. */ |
9 /* */ | 9 /* */ |
10 /* This file is part of the FreeType project, and may only be used, */ | 10 /* This file is part of the FreeType project, and may only be used, */ |
11 /* modified, and distributed under the terms of the FreeType project */ | 11 /* modified, and distributed under the terms of the FreeType project */ |
12 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ | 12 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ |
13 /* this file you indicate that you have read the license and */ | 13 /* this file you indicate that you have read the license and */ |
14 /* understand and accept it fully. */ | 14 /* understand and accept it fully. */ |
15 /* */ | 15 /* */ |
16 /***************************************************************************/ | 16 /***************************************************************************/ |
17 | 17 |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 typedef struct CFF_Field_Handler_ | 83 typedef struct CFF_Field_Handler_ |
84 { | 84 { |
85 int kind; | 85 int kind; |
86 int code; | 86 int code; |
87 FT_UInt offset; | 87 FT_UInt offset; |
88 FT_Byte size; | 88 FT_Byte size; |
89 CFF_Field_Reader reader; | 89 CFF_Field_Reader reader; |
90 FT_UInt array_max; | 90 FT_UInt array_max; |
91 FT_UInt count_offset; | 91 FT_UInt count_offset; |
92 | 92 |
| 93 #ifdef FT_DEBUG_LEVEL_TRACE |
| 94 const char* id; |
| 95 #endif |
| 96 |
93 } CFF_Field_Handler; | 97 } CFF_Field_Handler; |
94 | 98 |
95 | 99 |
96 FT_END_HEADER | 100 FT_END_HEADER |
97 | 101 |
98 | 102 |
99 #endif /* __CFF_PARSE_H__ */ | 103 #endif /* __CFF_PARSE_H__ */ |
100 | 104 |
101 | 105 |
102 /* END */ | 106 /* END */ |
OLD | NEW |