1 /***************************************************************************/
5 /* PostScript Type 1 decoding routines (specification). */
7 /* Copyright 2000-2001, 2002, 2003 by */
8 /* David Turner, Robert Wilhelm, and Werner Lemberg. */
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. */
16 /***************************************************************************/
19 #ifndef __T1DECODE_H__
20 #define __T1DECODE_H__
24 #include FT_INTERNAL_POSTSCRIPT_AUX_H
25 #include FT_INTERNAL_TYPE1_TYPES_H
32 const T1_Decoder_FuncsRec t1_decoder_funcs
;
36 t1_decoder_parse_glyph( T1_Decoder decoder
,
37 FT_UInt glyph_index
);
40 t1_decoder_parse_charstrings( T1_Decoder decoder
,
45 t1_decoder_init( T1_Decoder decoder
,
49 FT_Byte
** glyph_names
,
52 FT_Render_Mode hint_mode
,
53 T1_Decoder_Callback parse_glyph
);
56 t1_decoder_done( T1_Decoder decoder
);
61 #endif /* __T1DECODE_H__ */