xref: /inferno-os/libfreetype/ttpost.h (revision 37da2899f40661e3e9631e497da8dc59b971cbd0)
1*37da2899SCharles.Forsyth /***************************************************************************/
2*37da2899SCharles.Forsyth /*                                                                         */
3*37da2899SCharles.Forsyth /*  ttpost.h                                                               */
4*37da2899SCharles.Forsyth /*                                                                         */
5*37da2899SCharles.Forsyth /*    Postcript name table processing for TrueType and OpenType fonts      */
6*37da2899SCharles.Forsyth /*    (specification).                                                     */
7*37da2899SCharles.Forsyth /*                                                                         */
8*37da2899SCharles.Forsyth /*  Copyright 1996-2001, 2002 by                                           */
9*37da2899SCharles.Forsyth /*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
10*37da2899SCharles.Forsyth /*                                                                         */
11*37da2899SCharles.Forsyth /*  This file is part of the FreeType project, and may only be used,       */
12*37da2899SCharles.Forsyth /*  modified, and distributed under the terms of the FreeType project      */
13*37da2899SCharles.Forsyth /*  license, LICENSE.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 /***************************************************************************/
18*37da2899SCharles.Forsyth 
19*37da2899SCharles.Forsyth 
20*37da2899SCharles.Forsyth #ifndef __TTPOST_H__
21*37da2899SCharles.Forsyth #define __TTPOST_H__
22*37da2899SCharles.Forsyth 
23*37da2899SCharles.Forsyth 
24*37da2899SCharles.Forsyth #include <ft2build.h>
25*37da2899SCharles.Forsyth #include FT_CONFIG_CONFIG_H
26*37da2899SCharles.Forsyth #include FT_INTERNAL_TRUETYPE_TYPES_H
27*37da2899SCharles.Forsyth 
28*37da2899SCharles.Forsyth 
29*37da2899SCharles.Forsyth FT_BEGIN_HEADER
30*37da2899SCharles.Forsyth 
31*37da2899SCharles.Forsyth 
32*37da2899SCharles.Forsyth   FT_LOCAL( FT_Error )
33*37da2899SCharles.Forsyth   tt_face_get_ps_name( TT_Face      face,
34*37da2899SCharles.Forsyth                        FT_UInt      idx,
35*37da2899SCharles.Forsyth                        FT_String**  PSname );
36*37da2899SCharles.Forsyth 
37*37da2899SCharles.Forsyth   FT_LOCAL( void )
38*37da2899SCharles.Forsyth   tt_face_free_ps_names( TT_Face  face );
39*37da2899SCharles.Forsyth 
40*37da2899SCharles.Forsyth 
41*37da2899SCharles.Forsyth FT_END_HEADER
42*37da2899SCharles.Forsyth 
43*37da2899SCharles.Forsyth #endif /* __TTPOST_H__ */
44*37da2899SCharles.Forsyth 
45*37da2899SCharles.Forsyth 
46*37da2899SCharles.Forsyth /* END */
47