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
|
|
|
|
|
2000-05-11 20:23:52 +02:00
|
|
|
#include <freetype/config/ftconfig.h>
|
|
|
|
#include <freetype/internal/tttypes.h>
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2000-07-05 06:32:02 +02:00
|
|
|
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
|
|
|
|
|
|
|
|
|
2000-11-04 02:55:49 +01:00
|
|
|
FT_LOCAL
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Error TT_Get_PS_Name( TT_Face face,
|
|
|
|
FT_UInt index,
|
|
|
|
FT_String** PSname );
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-11-04 02:55:49 +01:00
|
|
|
FT_LOCAL
|
1999-12-17 00:11:37 +01:00
|
|
|
void TT_Free_Post_Names( TT_Face face );
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2000-07-05 06:32:02 +02:00
|
|
|
}
|
1999-12-17 00:11:37 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* TTPOST_H */
|
|
|
|
|
|
|
|
|
|
|
|
/* END */
|