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