xref: /inferno-os/libfreetype/ahmodule.h (revision d0e1d143ef6f03c75c008c7ec648859dd260cbab)
1 /***************************************************************************/
2 /*                                                                         */
3 /*  ahmodule.h                                                             */
4 /*                                                                         */
5 /*    Auto-hinting module (declaration).                                   */
6 /*                                                                         */
7 /*  Copyright 2000-2001 Catharon Productions Inc.                          */
8 /*  Author: David Turner                                                   */
9 /*                                                                         */
10 /*  This file is part of the Catharon Typography Project and shall only    */
11 /*  be used, modified, and distributed under the terms of the Catharon     */
12 /*  Open Source License that should come with this file under the name     */
13 /*  `CatharonLicense.txt'.  By continuing to use, modify, or distribute    */
14 /*  this file you indicate that you have read the license and              */
15 /*  understand and accept it fully.                                        */
16 /*                                                                         */
17 /*  Note that this license is compatible with the FreeType license.        */
18 /*                                                                         */
19 /***************************************************************************/
20 
21 
22 #ifndef __AHMODULE_H__
23 #define __AHMODULE_H__
24 
25 
26 #include <ft2build.h>
27 #include FT_MODULE_H
28 
29 
30 FT_BEGIN_HEADER
31 
32 
33   FT_CALLBACK_TABLE
34   const FT_Module_Class  autohint_module_class;
35 
36 
37 FT_END_HEADER
38 
39 #endif /* __AHMODULE_H__ */
40 
41 
42 /* END */
43