ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
ahloader.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 /* ahloader.h */
25 /* */
26 /* Glyph loader for the auto-hinting module (declaration only). */
27 /* */
28 /* Copyright 2000-2001, 2002 Catharon Productions Inc. */
29 /* Author: David Turner */
30 /* */
31 /* This file is part of the Catharon Typography Project and shall only */
32 /* be used, modified, and distributed under the terms of the Catharon */
33 /* Open Source License that should come with this file under the name */
34 /* `CatharonLicense.txt'. By continuing to use, modify, or distribute */
35 /* this file you indicate that you have read the license and */
36 /* understand and accept it fully. */
37 /* */
38 /* Note that this license is compatible with the FreeType license. */
39 /* */
40 /***************************************************************************/
41 
42 
43 
44 #ifndef AGS_LIB_FREETYPE_AHLOADER_H
45 #define AGS_LIB_FREETYPE_AHLOADER_H
46 
47 
48 #include <ft2build.h>
49 #include "ags/lib/freetype-2.1.3/ftgloadr.h"
50 #include FT_OUTLINE_H
51 
52 
53 #define AH_Load FT_GlyphLoad
54 #define AH_Loader FT_GlyphLoader
55 
56 #define ah_loader_new FT_GlyphLoader_New
57 #define ah_loader_done FT_GlyphLoader_Done
58 #define ah_loader_reset FT_GlyphLoader_Reset
59 #define ah_loader_rewind FT_GlyphLoader_Rewind
60 #define ah_loader_create_extra FT_GlyphLoader_CreateExtra
61 #define ah_loader_check_points FT_GlyphLoader_CheckPoints
62 #define ah_loader_check_subglyphs FT_GlyphLoader_CheckSubGlyphs
63 #define ah_loader_prepare FT_GlyphLoader_Prepare
64 #define ah_loader_add FT_GlyphLoader_Add
65 #define ah_loader_copy_points FT_GlyphLoader_CopyPoints
66 
67 
68 #endif /* AGS_LIB_FREETYPE_AHLOADER_H */