ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
fterrors.h
1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 /***************************************************************************/
23 /* */
24 /* fterrors.h */
25 /* */
26 /* FreeType error codes */
27 /* */
28 /* Copyright 1996-2001, 2002 by */
29 /* David Turner, Robert Wilhelm, and Werner Lemberg. */
30 /* */
31 /* This file is part of the FreeType project, and may only be used, */
32 /* modified, and distributed under the terms of the FreeType project */
33 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */
34 /* this file you indicate that you have read the license and */
35 /* understand and accept it fully. */
36 /* */
37 /***************************************************************************/
38 
39 #ifndef AGS_LIB_FREETYPE_FTERRORS_H
40 #define AGS_LIB_FREETYPE_FTERRORS_H
41 
42 
43 #define FT_Err_Ok 0x00
44 #define FT_Err_Invalid_Argument 0x06
45 #define FT_Err_Unimplemented_Feature 0x07
46 #define FT_Err_Invalid_Composite 0x15
47 #define FT_Err_Out_Of_Memory 0x40
48 
49 
50 #endif /* AGS_LIB_FREETYPE_FTERRORS_H */