]>
Commit | Line | Data |
---|---|---|
cabec872 RR |
1 | /***************************************************************************/ |
2 | /* */ | |
3 | /* ttpost.h */ | |
4 | /* */ | |
5 | /* Postcript name table processing for TrueType and OpenType fonts */ | |
6 | /* (specification). */ | |
7 | /* */ | |
8 | /* Copyright 1996-2000 by */ | |
9 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ | |
10 | /* */ | |
11 | /* This file is part of the FreeType project, and may only be used, */ | |
12 | /* modified, and distributed under the terms of the FreeType project */ | |
13 | /* 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 | ||
20 | #ifndef TTPOST_H | |
21 | #define TTPOST_H | |
22 | ||
23 | #include <freetype/config/ftconfig.h> | |
24 | #include <freetype/internal/tttypes.h> | |
25 | ||
26 | #ifdef __cplusplus | |
27 | extern "C" { | |
28 | #endif | |
29 | ||
30 | ||
31 | #define TT_Err_Invalid_Post_Table_Format 0x0B00 | |
32 | #define TT_Err_Invalid_Post_Table 0x0B01 | |
33 | ||
34 | ||
35 | LOCAL_DEF | |
36 | FT_Error TT_Get_PS_Name( TT_Face face, | |
37 | FT_UInt index, | |
38 | FT_String** PSname ); | |
39 | ||
40 | LOCAL_DEF | |
41 | void TT_Free_Post_Names( TT_Face face ); | |
42 | ||
43 | ||
44 | #ifdef __cplusplus | |
45 | } | |
46 | #endif | |
47 | ||
48 | ||
49 | #endif /* TTPOST_H */ | |
50 | ||
51 | ||
52 | /* END */ |