1 /*--------------------------------------------------------------------------
2   ----- File:        t1afmtool.h
3   ----- Author:      Rainer Menzner (Rainer.Menzner@web.de)
4   ----- Date:        2001-04-01
5   ----- Description: This file is part of the t1-library. It contains
6                      declarations and definitions for t1afmtool.c.
7   ----- Copyright:   t1lib is copyrighted (c) Rainer Menzner, 1996-2001.
8                      As of version 0.5, t1lib is distributed under the
9 		     GNU General Public Library Lincense. The
10 		     conditions can be found in the files LICENSE and
11 		     LGPL, which should reside in the toplevel
12 		     directory of the distribution.  Please note that
13 		     there are parts of t1lib that are subject to
14 		     other licenses:
15 		     The parseAFM-package is copyrighted by Adobe Systems
16 		     Inc.
17 		     The type1 rasterizer is copyrighted by IBM and the
18 		     X11-consortium.
19   ----- Warranties:  Of course, there's NO WARRANTY OF ANY KIND :-)
20   ----- Credits:     I want to thank IBM and the X11-consortium for making
21                      their rasterizer freely available.
22 		     Also thanks to Piet Tutelaers for his ps2pk, from
23 		     which I took the rasterizer sources in a format
24 		     independent from X11.
25                      Thanks to all people who make free software living!
26 --------------------------------------------------------------------------*/
27 
28 #ifdef T1AFMTOOL_C
29 
30 FontInfo *T1_GenerateAFMFallbackInfo( int FontID);
31 int      T1_WriteAFMFallbackFile( int FontID);
32 extern struct region *fontfcnB_ByName( int FontID, int modflag,
33 				       struct XYspace *S,
34 				       char *charname,
35 				       int *mode, psfont *Font_Ptr,
36 				       int do_raster);
37 
38 #else
39 
40 extern FontInfo *T1_GenerateAFMFallbackInfo( int FontID);
41 extern int      T1_WriteAFMFallbackFile( int FontID);
42 
43 #endif
44