]>
Commit | Line | Data |
---|---|---|
cabec872 RR |
1 | /***************************************************************************/ |
2 | /* */ | |
3 | /* t1load.h */ | |
4 | /* */ | |
5 | /* Type 1 font loader (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 T1LOAD_H | |
20 | #define T1LOAD_H | |
21 | ||
22 | #include <freetype/internal/ftstream.h> | |
23 | ||
24 | ||
25 | #ifdef FT_FLAT_COMPILE | |
26 | ||
27 | #include "t1parse.h" | |
28 | ||
29 | #else | |
30 | ||
31 | #include <type1/t1parse.h> | |
32 | ||
33 | #endif | |
34 | ||
35 | ||
36 | #ifdef __cplusplus | |
37 | extern "C" { | |
38 | #endif | |
39 | ||
40 | LOCAL_DEF | |
41 | void Init_T1_Parser( T1_Parser* parser, | |
42 | T1_Face face, | |
43 | T1_Tokenizer tokenizer ); | |
44 | ||
45 | ||
46 | LOCAL_DEF | |
47 | FT_Error Parse_T1_FontProgram( T1_Parser* parser ); | |
48 | ||
49 | ||
50 | #ifdef __cplusplus | |
51 | } | |
52 | #endif | |
53 | ||
54 | #endif /* T1LOAD_H */ | |
55 | ||
56 | ||
57 | /* END */ |