00001 /***************************************************************************/ 00002 /* */ 00003 /* ttpost.h */ 00004 /* */ 00005 /* Postcript name table processing for TrueType and OpenType fonts */ 00006 /* (specification). */ 00007 /* */ 00008 /* Copyright 1996-2001, 2002 by */ 00009 /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 00010 /* */ 00011 /* This file is part of the FreeType project, and may only be used, */ 00012 /* modified, and distributed under the terms of the FreeType project */ 00013 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 00014 /* this file you indicate that you have read the license and */ 00015 /* understand and accept it fully. */ 00016 /* */ 00017 /***************************************************************************/ 00018 00019 00020 #ifndef __TTPOST_H__ 00021 #define __TTPOST_H__ 00022 00023 00024 #include <ft2build.h> 00025 #include FT_CONFIG_CONFIG_H 00026 #include FT_INTERNAL_TRUETYPE_TYPES_H 00027 00028 00029 FT_BEGIN_HEADER 00030 00031 00032 FT_LOCAL( FT_Error ) 00033 tt_face_get_ps_name( TT_Face face, 00034 FT_UInt idx, 00035 FT_String** PSname ); 00036 00037 FT_LOCAL( void ) 00038 tt_face_free_ps_names( TT_Face face ); 00039 00040 00041 FT_END_HEADER 00042 00043 #endif /* __TTPOST_H__ */ 00044 00045 00046 /* END */