blob: 6f06d75a719e0500caa7e1644553f793b6b7559f [file] [log] [blame]
David Turnerd2b1f351999-12-16 23:11:37 +00001/***************************************************************************/
2/* */
3/* ttpost.h */
4/* */
5/* Postcript name table processing for TrueType and OpenType fonts */
6/* (specification). */
7/* */
Werner Lembergb7b163c2002-03-31 18:48:24 +00008/* Copyright 1996-2001, 2002 by */
David Turnerd2b1f351999-12-16 23:11:37 +00009/* David Turner, Robert Wilhelm, and Werner Lemberg. */
10/* */
Werner Lemberg920d41e2000-06-05 14:32:32 +000011/* This file is part of the FreeType project, and may only be used, */
12/* modified, and distributed under the terms of the FreeType project */
David Turnerd2b1f351999-12-16 23:11:37 +000013/* license, LICENSE.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/***************************************************************************/
18
19
Werner Lemberg90d99642000-12-09 00:45:38 +000020#ifndef __TTPOST_H__
21#define __TTPOST_H__
David Turnerd2b1f351999-12-16 23:11:37 +000022
Werner Lembergcc069be2000-12-08 16:17:16 +000023
David Turner19ed8af2000-12-08 02:42:29 +000024#include <ft2build.h>
25#include FT_CONFIG_CONFIG_H
26#include FT_INTERNAL_TRUETYPE_TYPES_H
David Turnerd2b1f351999-12-16 23:11:37 +000027
Werner Lembergcc069be2000-12-08 16:17:16 +000028
David Turner19ed8af2000-12-08 02:42:29 +000029FT_BEGIN_HEADER
David Turnerd2b1f351999-12-16 23:11:37 +000030
Werner Lembergcc069be2000-12-08 16:17:16 +000031
David Turnerbc82f1b2002-03-01 02:26:22 +000032 FT_LOCAL( FT_Error )
David Turnerb08fe2d2002-08-27 20:20:29 +000033 tt_face_get_ps_name( TT_Face face,
34 FT_UInt idx,
35 FT_String** PSname );
David Turnerd2b1f351999-12-16 23:11:37 +000036
David Turnerbc82f1b2002-03-01 02:26:22 +000037 FT_LOCAL( void )
David Turnerb08fe2d2002-08-27 20:20:29 +000038 tt_face_free_ps_names( TT_Face face );
David Turnerd2b1f351999-12-16 23:11:37 +000039
40
David Turner19ed8af2000-12-08 02:42:29 +000041FT_END_HEADER
David Turnerd2b1f351999-12-16 23:11:37 +000042
Werner Lemberg90d99642000-12-09 00:45:38 +000043#endif /* __TTPOST_H__ */
David Turnerd2b1f351999-12-16 23:11:37 +000044
45
46/* END */