2018-06-03 22:00:42 +02:00
|
|
|
/****************************************************************************
|
|
|
|
*
|
|
|
|
* fterrdef.h
|
|
|
|
*
|
|
|
|
* FreeType error codes (specification).
|
|
|
|
*
|
2021-01-17 07:18:48 +01:00
|
|
|
* Copyright (C) 2002-2021 by
|
2018-06-03 22:00:42 +02:00
|
|
|
* David Turner, Robert Wilhelm, and Werner Lemberg.
|
|
|
|
*
|
|
|
|
* This file is part of the FreeType project, and may only be used,
|
|
|
|
* modified, and distributed under the terms of the FreeType project
|
|
|
|
* license, LICENSE.TXT. By continuing to use, modify, or distribute
|
|
|
|
* this file you indicate that you have read the license and
|
|
|
|
* understand and accept it fully.
|
|
|
|
*
|
|
|
|
*/
|
2002-03-29 08:43:04 +01:00
|
|
|
|
|
|
|
|
2018-06-03 22:00:42 +02:00
|
|
|
/**************************************************************************
|
|
|
|
*
|
2018-06-17 21:08:36 +02:00
|
|
|
* @section:
|
2018-06-03 22:00:42 +02:00
|
|
|
* error_code_values
|
|
|
|
*
|
2018-06-17 21:08:36 +02:00
|
|
|
* @title:
|
2018-06-03 22:00:42 +02:00
|
|
|
* Error Code Values
|
|
|
|
*
|
2018-06-17 21:08:36 +02:00
|
|
|
* @abstract:
|
2018-06-03 22:00:42 +02:00
|
|
|
* All possible error codes returned by FreeType functions.
|
|
|
|
*
|
2018-06-17 21:08:36 +02:00
|
|
|
* @description:
|
2018-08-24 18:52:30 +02:00
|
|
|
* The list below is taken verbatim from the file `fterrdef.h` (loaded
|
|
|
|
* automatically by including `FT_FREETYPE_H`). The first argument of the
|
|
|
|
* `FT_ERROR_DEF_` macro is the error label; by default, the prefix
|
|
|
|
* `FT_Err_` gets added so that you get error names like
|
|
|
|
* `FT_Err_Cannot_Open_Resource`. The second argument is the error code,
|
|
|
|
* and the last argument an error string, which is not used by FreeType.
|
2018-06-03 22:00:42 +02:00
|
|
|
*
|
2018-08-24 18:52:30 +02:00
|
|
|
* Within your application you should **only** use error names and
|
|
|
|
* **never** its numeric values! The latter might (and actually do)
|
2018-06-03 22:00:42 +02:00
|
|
|
* change in forthcoming FreeType versions.
|
|
|
|
*
|
2018-08-24 18:52:30 +02:00
|
|
|
* Macro `FT_NOERRORDEF_` defines `FT_Err_Ok`, which is always zero. See
|
|
|
|
* the 'Error Enumerations' subsection how to automatically generate a
|
|
|
|
* list of error strings.
|
2018-06-03 22:00:42 +02:00
|
|
|
*
|
|
|
|
*/
|
2002-03-29 08:43:04 +01:00
|
|
|
|
|
|
|
|
2018-06-03 22:00:42 +02:00
|
|
|
/**************************************************************************
|
|
|
|
*
|
2018-06-17 21:08:36 +02:00
|
|
|
* @enum:
|
2018-06-03 22:00:42 +02:00
|
|
|
* FT_Err_XXX
|
|
|
|
*
|
|
|
|
*/
|
2002-02-22 18:57:05 +01:00
|
|
|
|
|
|
|
/* generic errors */
|
|
|
|
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_NOERRORDEF_( Ok, 0x00,
|
2002-02-22 18:57:05 +01:00
|
|
|
"no error" )
|
|
|
|
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Cannot_Open_Resource, 0x01,
|
2002-05-21 16:13:01 +02:00
|
|
|
"cannot open resource" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Unknown_File_Format, 0x02,
|
2002-05-21 16:13:01 +02:00
|
|
|
"unknown file format" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Invalid_File_Format, 0x03,
|
2002-05-21 16:13:01 +02:00
|
|
|
"broken file" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Invalid_Version, 0x04,
|
2002-05-21 16:13:01 +02:00
|
|
|
"invalid FreeType version" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Lower_Module_Version, 0x05,
|
2002-05-21 16:13:01 +02:00
|
|
|
"module version is too low" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Invalid_Argument, 0x06,
|
2002-05-21 16:13:01 +02:00
|
|
|
"invalid argument" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Unimplemented_Feature, 0x07,
|
2002-05-21 16:13:01 +02:00
|
|
|
"unimplemented feature" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Invalid_Table, 0x08,
|
2002-02-22 18:57:05 +01:00
|
|
|
"broken table" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Invalid_Offset, 0x09,
|
2002-02-22 18:57:05 +01:00
|
|
|
"broken offset within table" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Array_Too_Large, 0x0A,
|
* include/freetype/fterrdef.h, include/freetype/config/ftconfig.h,
include/freetype/internal/ftmemory.h, src/base/ftdbgmem.c,
src/base/ftutil.c: udpating the memory management functions and
macros to safely deal with array size buffer overflows, this
corresponds to attemps to allocate arrays that are too large. For
an example, consider the following code:
count = read_uint32_from_file();
array = malloc( sizeof(Item) * count );
for ( nn = 0; nn < count; nn++ )
array[nn] = read_item_from_file();
if 'count' is larger than FT_UINT_MAX/sizeof(Item), the multiplication
will overflow and the array allocated will be smaller than the data
read from the file. In this case, the heap will be trashed, and this
can be used as a denial-of-service, or make the engine crash later.
the FT_ARRAY_NEW and FT_ARRAY_RENEW macro now check that the new
count is no more than FT_INT_MAX/item_size, otherwise, a new error,
named 'FT_Err_Array_Too_Large' will be returned.
note that the memory debugger now works again when FT_DEBUG_MEMORY
is defined, and FT_STRICT_ALIASING has disappeared, the corresponding
code being now the default.
2006-05-02 08:34:27 +02:00
|
|
|
"array allocation size too large" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Missing_Module, 0x0B,
|
2011-11-26 13:38:26 +01:00
|
|
|
"missing module" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Missing_Property, 0x0C,
|
2012-08-30 23:31:55 +02:00
|
|
|
"missing property" )
|
2002-02-22 18:57:05 +01:00
|
|
|
|
|
|
|
/* glyph/character errors */
|
|
|
|
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Invalid_Glyph_Index, 0x10,
|
2002-05-21 16:13:01 +02:00
|
|
|
"invalid glyph index" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Invalid_Character_Code, 0x11,
|
2002-05-21 16:13:01 +02:00
|
|
|
"invalid character code" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Invalid_Glyph_Format, 0x12,
|
2002-05-21 16:13:01 +02:00
|
|
|
"unsupported glyph image format" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Cannot_Render_Glyph, 0x13,
|
2002-05-21 16:13:01 +02:00
|
|
|
"cannot render this glyph format" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Invalid_Outline, 0x14,
|
2002-05-21 16:13:01 +02:00
|
|
|
"invalid outline" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Invalid_Composite, 0x15,
|
2002-05-21 16:13:01 +02:00
|
|
|
"invalid composite glyph" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Too_Many_Hints, 0x16,
|
2002-05-21 16:13:01 +02:00
|
|
|
"too many hints" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Invalid_Pixel_Size, 0x17,
|
2002-05-21 16:13:01 +02:00
|
|
|
"invalid pixel size" )
|
2002-02-22 18:57:05 +01:00
|
|
|
|
|
|
|
/* handle errors */
|
|
|
|
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Invalid_Handle, 0x20,
|
2002-05-21 16:13:01 +02:00
|
|
|
"invalid object handle" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Invalid_Library_Handle, 0x21,
|
2002-05-21 16:13:01 +02:00
|
|
|
"invalid library handle" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Invalid_Driver_Handle, 0x22,
|
2002-05-21 16:13:01 +02:00
|
|
|
"invalid module handle" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Invalid_Face_Handle, 0x23,
|
2002-05-21 16:13:01 +02:00
|
|
|
"invalid face handle" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Invalid_Size_Handle, 0x24,
|
2002-05-21 16:13:01 +02:00
|
|
|
"invalid size handle" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Invalid_Slot_Handle, 0x25,
|
2002-05-21 16:13:01 +02:00
|
|
|
"invalid glyph slot handle" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Invalid_CharMap_Handle, 0x26,
|
2002-05-21 16:13:01 +02:00
|
|
|
"invalid charmap handle" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Invalid_Cache_Handle, 0x27,
|
2002-05-21 16:13:01 +02:00
|
|
|
"invalid cache manager handle" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Invalid_Stream_Handle, 0x28,
|
2002-05-21 16:13:01 +02:00
|
|
|
"invalid stream handle" )
|
2002-02-22 18:57:05 +01:00
|
|
|
|
|
|
|
/* driver errors */
|
|
|
|
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Too_Many_Drivers, 0x30,
|
2002-05-21 16:13:01 +02:00
|
|
|
"too many modules" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Too_Many_Extensions, 0x31,
|
2002-05-21 16:13:01 +02:00
|
|
|
"too many extensions" )
|
2002-02-22 18:57:05 +01:00
|
|
|
|
|
|
|
/* memory errors */
|
|
|
|
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Out_Of_Memory, 0x40,
|
2002-05-21 16:13:01 +02:00
|
|
|
"out of memory" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Unlisted_Object, 0x41,
|
2002-05-21 16:13:01 +02:00
|
|
|
"unlisted object" )
|
2002-02-22 18:57:05 +01:00
|
|
|
|
|
|
|
/* stream errors */
|
|
|
|
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Cannot_Open_Stream, 0x51,
|
2002-05-21 16:13:01 +02:00
|
|
|
"cannot open stream" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Invalid_Stream_Seek, 0x52,
|
2002-05-21 16:13:01 +02:00
|
|
|
"invalid stream seek" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Invalid_Stream_Skip, 0x53,
|
2002-05-21 16:13:01 +02:00
|
|
|
"invalid stream skip" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Invalid_Stream_Read, 0x54,
|
2002-05-21 16:13:01 +02:00
|
|
|
"invalid stream read" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Invalid_Stream_Operation, 0x55,
|
2002-05-21 16:13:01 +02:00
|
|
|
"invalid stream operation" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Invalid_Frame_Operation, 0x56,
|
2002-05-21 16:13:01 +02:00
|
|
|
"invalid frame operation" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Nested_Frame_Access, 0x57,
|
2002-05-21 16:13:01 +02:00
|
|
|
"nested frame access" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Invalid_Frame_Read, 0x58,
|
2002-05-21 16:13:01 +02:00
|
|
|
"invalid frame read" )
|
2002-02-22 18:57:05 +01:00
|
|
|
|
|
|
|
/* raster errors */
|
|
|
|
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Raster_Uninitialized, 0x60,
|
2002-05-21 16:13:01 +02:00
|
|
|
"raster uninitialized" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Raster_Corrupted, 0x61,
|
2002-05-21 16:13:01 +02:00
|
|
|
"raster corrupted" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Raster_Overflow, 0x62,
|
2002-05-21 16:13:01 +02:00
|
|
|
"raster overflow" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Raster_Negative_Height, 0x63,
|
2002-05-21 16:13:01 +02:00
|
|
|
"negative height while rastering" )
|
2002-02-22 18:57:05 +01:00
|
|
|
|
|
|
|
/* cache errors */
|
|
|
|
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Too_Many_Caches, 0x70,
|
2002-05-21 16:13:01 +02:00
|
|
|
"too many registered caches" )
|
2002-02-22 18:57:05 +01:00
|
|
|
|
|
|
|
/* TrueType and SFNT errors */
|
|
|
|
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Invalid_Opcode, 0x80,
|
2002-05-21 16:13:01 +02:00
|
|
|
"invalid opcode" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Too_Few_Arguments, 0x81,
|
2002-05-21 16:13:01 +02:00
|
|
|
"too few arguments" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Stack_Overflow, 0x82,
|
2002-05-21 16:13:01 +02:00
|
|
|
"stack overflow" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Code_Overflow, 0x83,
|
2002-05-21 16:13:01 +02:00
|
|
|
"code overflow" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Bad_Argument, 0x84,
|
2002-05-21 16:13:01 +02:00
|
|
|
"bad argument" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Divide_By_Zero, 0x85,
|
2002-05-21 16:13:01 +02:00
|
|
|
"division by zero" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Invalid_Reference, 0x86,
|
2002-05-21 16:13:01 +02:00
|
|
|
"invalid reference" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Debug_OpCode, 0x87,
|
2002-05-21 16:13:01 +02:00
|
|
|
"found debug opcode" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( ENDF_In_Exec_Stream, 0x88,
|
2002-05-21 16:13:01 +02:00
|
|
|
"found ENDF opcode in execution stream" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Nested_DEFS, 0x89,
|
2002-05-21 16:13:01 +02:00
|
|
|
"nested DEFS" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Invalid_CodeRange, 0x8A,
|
2002-05-21 16:13:01 +02:00
|
|
|
"invalid code range" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Execution_Too_Long, 0x8B,
|
2002-05-21 16:13:01 +02:00
|
|
|
"execution context too long" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Too_Many_Function_Defs, 0x8C,
|
2002-05-21 16:13:01 +02:00
|
|
|
"too many function definitions" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Too_Many_Instruction_Defs, 0x8D,
|
2002-05-21 16:13:01 +02:00
|
|
|
"too many instruction definitions" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Table_Missing, 0x8E,
|
2002-05-21 16:13:01 +02:00
|
|
|
"SFNT font table missing" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Horiz_Header_Missing, 0x8F,
|
2002-05-21 16:13:01 +02:00
|
|
|
"horizontal header (hhea) table missing" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Locations_Missing, 0x90,
|
2002-05-21 16:13:01 +02:00
|
|
|
"locations (loca) table missing" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Name_Table_Missing, 0x91,
|
2002-05-21 16:13:01 +02:00
|
|
|
"name table missing" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( CMap_Table_Missing, 0x92,
|
2002-05-21 16:13:01 +02:00
|
|
|
"character map (cmap) table missing" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Hmtx_Table_Missing, 0x93,
|
2002-05-21 16:13:01 +02:00
|
|
|
"horizontal metrics (hmtx) table missing" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Post_Table_Missing, 0x94,
|
2002-05-21 16:13:01 +02:00
|
|
|
"PostScript (post) table missing" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Invalid_Horiz_Metrics, 0x95,
|
2002-05-21 16:13:01 +02:00
|
|
|
"invalid horizontal metrics" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Invalid_CharMap_Format, 0x96,
|
2002-05-21 16:13:01 +02:00
|
|
|
"invalid character map (cmap) format" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Invalid_PPem, 0x97,
|
2002-05-21 16:13:01 +02:00
|
|
|
"invalid ppem value" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Invalid_Vert_Metrics, 0x98,
|
2002-05-21 16:13:01 +02:00
|
|
|
"invalid vertical metrics" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Could_Not_Find_Context, 0x99,
|
2002-05-21 16:13:01 +02:00
|
|
|
"could not find context" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Invalid_Post_Table_Format, 0x9A,
|
2002-05-21 16:13:01 +02:00
|
|
|
"invalid PostScript (post) table format" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Invalid_Post_Table, 0x9B,
|
2002-05-21 16:13:01 +02:00
|
|
|
"invalid PostScript (post) table" )
|
2017-04-03 11:37:33 +02:00
|
|
|
FT_ERRORDEF_( DEF_In_Glyf_Bytecode, 0x9C,
|
|
|
|
"found FDEF or IDEF opcode in glyf bytecode" )
|
2017-08-11 09:34:20 +02:00
|
|
|
FT_ERRORDEF_( Missing_Bitmap, 0x9D,
|
|
|
|
"missing bitmap in strike" )
|
2002-02-22 18:57:05 +01:00
|
|
|
|
|
|
|
/* CFF, CID, and Type 1 errors */
|
|
|
|
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Syntax_Error, 0xA0,
|
2002-05-21 16:13:01 +02:00
|
|
|
"opcode syntax error" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Stack_Underflow, 0xA1,
|
2002-05-21 16:13:01 +02:00
|
|
|
"argument stack underflow" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Ignore, 0xA2,
|
2004-02-12 09:33:20 +01:00
|
|
|
"ignore" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( No_Unicode_Glyph_Name, 0xA3,
|
2010-07-09 04:36:00 +02:00
|
|
|
"no Unicode glyph name found" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Glyph_Too_Big, 0xA4,
|
2015-10-19 23:17:25 +02:00
|
|
|
"glyph too big for hinting" )
|
2010-07-09 04:36:00 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* BDF errors */
|
|
|
|
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Missing_Startfont_Field, 0xB0,
|
2002-05-21 16:13:01 +02:00
|
|
|
"`STARTFONT' field missing" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Missing_Font_Field, 0xB1,
|
2002-05-21 16:13:01 +02:00
|
|
|
"`FONT' field missing" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Missing_Size_Field, 0xB2,
|
2002-05-21 16:13:01 +02:00
|
|
|
"`SIZE' field missing" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Missing_Fontboundingbox_Field, 0xB3,
|
2010-06-23 10:00:52 +02:00
|
|
|
"`FONTBOUNDINGBOX' field missing" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Missing_Chars_Field, 0xB4,
|
2002-05-21 16:13:01 +02:00
|
|
|
"`CHARS' field missing" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Missing_Startchar_Field, 0xB5,
|
2002-05-21 16:13:01 +02:00
|
|
|
"`STARTCHAR' field missing" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Missing_Encoding_Field, 0xB6,
|
2002-05-21 16:13:01 +02:00
|
|
|
"`ENCODING' field missing" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Missing_Bbx_Field, 0xB7,
|
2002-05-21 16:13:01 +02:00
|
|
|
"`BBX' field missing" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Bbx_Too_Big, 0xB8,
|
2006-03-26 09:19:07 +02:00
|
|
|
"`BBX' too big" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Corrupted_Font_Header, 0xB9,
|
2007-06-02 00:16:43 +02:00
|
|
|
"Font header corrupted or missing fields" )
|
2014-06-25 08:58:14 +02:00
|
|
|
FT_ERRORDEF_( Corrupted_Font_Glyphs, 0xBA,
|
2007-06-02 00:16:43 +02:00
|
|
|
"Font glyphs corrupted or missing fields" )
|
2002-03-29 08:43:04 +01:00
|
|
|
|
2015-07-23 13:35:07 +02:00
|
|
|
/* */
|
|
|
|
|
2002-03-29 08:43:04 +01:00
|
|
|
|
|
|
|
/* END */
|