]> icculus.org git repositories - taylor/freespace2.git/blob - include/fonttool.h
Initial revision
[taylor/freespace2.git] / include / fonttool.h
1 /*
2  * $Logfile: /Freespace2/code/Fonttool/FontTool.h $
3  * $Revision$
4  * $Date$
5  * $Author$
6  *
7  * Include file for font creating/kerning tools
8  *
9  * $Log$
10  * Revision 1.1  2002/05/03 03:28:11  root
11  * Initial revision
12  *
13  * 
14  * 2     10/24/98 5:15p Dave
15  * 
16  * 1     10/24/98 4:58p Dave
17  * 
18  * 2     6/05/97 4:53p John
19  * First rev of new antialiased font stuff.
20  * 
21  * 1     6/02/97 4:04p John
22  *
23  * $NoKeywords: $
24  */
25
26 #ifndef _FONTTOOL_H
27 #define _FONTTOOL_H
28
29 #include "2d.h"
30 #include "font.h"
31
32 void fonttool_edit_kerning(char *fname1);
33 void fonttool_kerning_copy( char *fname1, char *fname2 );
34 void fonttool_create_font(char *pcx_filename, char *font_filename);
35
36 void fonttool_read( char *fname2, font *fnt2 );
37 void fonttool_copy_kern( font *fnt1, font *fnt2 );
38 void fonttool_dump( char *fname1, font *fnt1 );
39 void fonttool_remove_kerning( font *fnt );
40 void fonttool_resync_kerning(font *fnt);
41
42
43 #endif
44