freetype2/src/sfnt/ttpost.h

53 lines
1.8 KiB
C
Raw Normal View History

1999-12-17 00:11:37 +01:00
/***************************************************************************/
/* */
/* ttpost.h */
/* */
/* Postcript name table processing for TrueType and OpenType fonts */
/* (specification). */
/* */
2000-06-05 16:32:32 +02:00
/* Copyright 1996-2000 by */
1999-12-17 00:11:37 +01:00
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
/* */
2000-06-05 16:32:32 +02:00
/* This file is part of the FreeType project, and may only be used, */
/* modified, and distributed under the terms of the FreeType project */
1999-12-17 00:11:37 +01:00
/* license, LICENSE.TXT. By continuing to use, modify, or distribute */
/* this file you indicate that you have read the license and */
/* understand and accept it fully. */
/* */
/***************************************************************************/
#ifndef TTPOST_H
#define TTPOST_H
#include <freetype/config/ftconfig.h>
#include <freetype/internal/tttypes.h>
1999-12-17 00:11:37 +01:00
#ifdef __cplusplus
extern "C" {
1999-12-17 00:11:37 +01:00
#endif
#define TT_Err_Invalid_Post_Table_Format 0x0B00
#define TT_Err_Invalid_Post_Table 0x0B01
FT_LOCAL
FT_Error TT_Get_PS_Name( TT_Face face,
FT_UInt index,
FT_String** PSname );
1999-12-17 00:11:37 +01:00
FT_LOCAL
1999-12-17 00:11:37 +01:00
void TT_Free_Post_Names( TT_Face face );
#ifdef __cplusplus
}
1999-12-17 00:11:37 +01:00
#endif
#endif /* TTPOST_H */
/* END */