]>
Commit | Line | Data |
---|---|---|
1 | /***************************************************************************/ | |
2 | /* */ | |
3 | /* ttcmap.h */ | |
4 | /* */ | |
5 | /* TrueType character mapping table (cmap) support (specification). */ | |
6 | /* */ | |
7 | /* Copyright 1996-2000 by */ | |
8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ | |
9 | /* */ | |
10 | /* This file is part of the FreeType project, and may only be used, */ | |
11 | /* modified, and distributed under the terms of the FreeType project */ | |
12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ | |
13 | /* this file you indicate that you have read the license and */ | |
14 | /* understand and accept it fully. */ | |
15 | /* */ | |
16 | /***************************************************************************/ | |
17 | ||
18 | ||
19 | #ifndef TTCMAP_H | |
20 | #define TTCMAP_H | |
21 | ||
22 | #include <freetype/internal/tttypes.h> | |
23 | ||
24 | #ifdef __cplusplus | |
25 | extern "C" { | |
26 | #endif | |
27 | ||
28 | ||
29 | LOCAL_DEF | |
30 | FT_Error TT_CharMap_Load( TT_Face face, | |
31 | TT_CMapTable* cmap, | |
32 | FT_Stream input ); | |
33 | ||
34 | LOCAL_DEF | |
35 | FT_Error TT_CharMap_Free( TT_Face face, | |
36 | TT_CMapTable* cmap ); | |
37 | ||
38 | #ifdef __cplusplus | |
39 | } | |
40 | #endif | |
41 | ||
42 | #endif /* TTCMAP_H */ | |
43 | ||
44 | ||
45 | /* END */ |