summaryrefslogtreecommitdiff
path: root/include/freetype/internal/t1errors.h
blob: 20a64ae47d54e53e579c26c10fba153bb2a00aaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/***************************************************************************/
/*                                                                         */
/*  t1errors.h                                                             */
/*                                                                         */
/*    Type 1 error ID definitions (specification only).                    */
/*                                                                         */
/*  Copyright 1996-2000 by                                                 */
/*  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.                                        */
/*                                                                         */
/***************************************************************************/


#ifndef __T1ERRORS_H__
#define __T1ERRORS_H__


#include <ft2build.h>


FT_BEGIN_HEADER


  /************************ error codes declaration **************/

  /* The error codes are grouped into `classes' used to indicate the */
  /* `level' at which the error happened.                            */
  /*                                                                 */
  /* The class is given by an error code's high byte.                */


  /* ------------- Success is always 0 -------- */

#define T1_Err_Ok                      FT_Err_Ok

  /* ----------- high level API errors -------- */

#define T1_Err_Unknown_File_Format     FT_Err_Unknown_File_Format
#define T1_Err_Invalid_File_Format     FT_Err_Invalid_File_Format
#define T1_Err_Invalid_Argument        FT_Err_Invalid_Argument
#define T1_Err_Invalid_Driver_Handle   FT_Err_Invalid_Driver_Handle
#define T1_Err_Invalid_Face_Handle     FT_Err_Invalid_Face_Handle
#define T1_Err_Invalid_Size_Handle     FT_Err_Invalid_Size_Handle
#define T1_Err_Invalid_Glyph_Handle    FT_Err_Invalid_Slot_Handle
#define T1_Err_Invalid_CharMap_Handle  FT_Err_Invalid_CharMap_Handle
#define T1_Err_Invalid_Glyph_Index     FT_Err_Invalid_Glyph_Index

#define T1_Err_Unimplemented_Feature   FT_Err_Unimplemented_Feature

#define T1_Err_Invalid_Engine          FT_Err_Invalid_Driver_Handle

  /* ------------- internal errors ------------ */

#define T1_Err_Out_Of_Memory           FT_Err_Out_Of_Memory
#define T1_Err_Unlisted_Object         FT_Err_Unlisted_Object

  /* ------------ general glyph outline errors ------ */

#define T1_Err_Invalid_Composite       FT_Err_Invalid_Composite

#define T1_Err_Syntax_Error            FT_Err_Invalid_File_Format
#define T1_Err_Stack_Underflow         FT_Err_Invalid_File_Format
#define T1_Err_Stack_Overflow          FT_Err_Invalid_File_Format


FT_END_HEADER

#endif /* __T1ERRORS_H__ */


/* END */