OLD | NEW |
1 /***************************************************************************/ | 1 /***************************************************************************/ |
2 /* */ | 2 /* */ |
3 /* fterrdef.h */ | 3 /* fterrdef.h */ |
4 /* */ | 4 /* */ |
5 /* FreeType error codes (specification). */ | 5 /* FreeType error codes (specification). */ |
6 /* */ | 6 /* */ |
7 /* Copyright 2002, 2004, 2006, 2007, 2010 by */ | 7 /* Copyright 2002, 2004, 2006, 2007, 2010-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 29 matching lines...) Expand all Loading... |
47 FT_ERRORDEF_( Invalid_Argument, 0x06, \ | 47 FT_ERRORDEF_( Invalid_Argument, 0x06, \ |
48 "invalid argument" ) | 48 "invalid argument" ) |
49 FT_ERRORDEF_( Unimplemented_Feature, 0x07, \ | 49 FT_ERRORDEF_( Unimplemented_Feature, 0x07, \ |
50 "unimplemented feature" ) | 50 "unimplemented feature" ) |
51 FT_ERRORDEF_( Invalid_Table, 0x08, \ | 51 FT_ERRORDEF_( Invalid_Table, 0x08, \ |
52 "broken table" ) | 52 "broken table" ) |
53 FT_ERRORDEF_( Invalid_Offset, 0x09, \ | 53 FT_ERRORDEF_( Invalid_Offset, 0x09, \ |
54 "broken offset within table" ) | 54 "broken offset within table" ) |
55 FT_ERRORDEF_( Array_Too_Large, 0x0A, \ | 55 FT_ERRORDEF_( Array_Too_Large, 0x0A, \ |
56 "array allocation size too large" ) | 56 "array allocation size too large" ) |
| 57 FT_ERRORDEF_( Missing_Module, 0x0B, \ |
| 58 "missing module" ) |
57 | 59 |
58 /* glyph/character errors */ | 60 /* glyph/character errors */ |
59 | 61 |
60 FT_ERRORDEF_( Invalid_Glyph_Index, 0x10, \ | 62 FT_ERRORDEF_( Invalid_Glyph_Index, 0x10, \ |
61 "invalid glyph index" ) | 63 "invalid glyph index" ) |
62 FT_ERRORDEF_( Invalid_Character_Code, 0x11, \ | 64 FT_ERRORDEF_( Invalid_Character_Code, 0x11, \ |
63 "invalid character code" ) | 65 "invalid character code" ) |
64 FT_ERRORDEF_( Invalid_Glyph_Format, 0x12, \ | 66 FT_ERRORDEF_( Invalid_Glyph_Format, 0x12, \ |
65 "unsupported glyph image format" ) | 67 "unsupported glyph image format" ) |
66 FT_ERRORDEF_( Cannot_Render_Glyph, 0x13, \ | 68 FT_ERRORDEF_( Cannot_Render_Glyph, 0x13, \ |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
234 "`BBX' field missing" ) | 236 "`BBX' field missing" ) |
235 FT_ERRORDEF_( Bbx_Too_Big, 0xB8, \ | 237 FT_ERRORDEF_( Bbx_Too_Big, 0xB8, \ |
236 "`BBX' too big" ) | 238 "`BBX' too big" ) |
237 FT_ERRORDEF_( Corrupted_Font_Header, 0xB9, \ | 239 FT_ERRORDEF_( Corrupted_Font_Header, 0xB9, \ |
238 "Font header corrupted or missing fields" ) | 240 "Font header corrupted or missing fields" ) |
239 FT_ERRORDEF_( Corrupted_Font_Glyphs, 0xBA, \ | 241 FT_ERRORDEF_( Corrupted_Font_Glyphs, 0xBA, \ |
240 "Font glyphs corrupted or missing fields" ) | 242 "Font glyphs corrupted or missing fields" ) |
241 | 243 |
242 | 244 |
243 /* END */ | 245 /* END */ |
OLD | NEW |