]> icculus.org git repositories - taylor/freespace2.git/blob - include/fonttool.h
added copyright header
[taylor/freespace2.git] / include / fonttool.h
1 /*
2  * Copyright (C) Volition, Inc. 1999.  All rights reserved.
3  *
4  * All source code herein is the property of Volition, Inc. You may not sell 
5  * or otherwise commercially exploit the source or things you created based on
6  * the source.
7  */
8
9 /*
10  * $Logfile: /Freespace2/code/Fonttool/FontTool.h $
11  * $Revision$
12  * $Date$
13  * $Author$
14  *
15  * Include file for font creating/kerning tools
16  *
17  * $Log$
18  * Revision 1.2  2002/06/09 04:41:13  relnev
19  * added copyright header
20  *
21  * Revision 1.1.1.1  2002/05/03 03:28:11  root
22  * Initial import.
23  *
24  * 
25  * 2     10/24/98 5:15p Dave
26  * 
27  * 1     10/24/98 4:58p Dave
28  * 
29  * 2     6/05/97 4:53p John
30  * First rev of new antialiased font stuff.
31  * 
32  * 1     6/02/97 4:04p John
33  *
34  * $NoKeywords: $
35  */
36
37 #ifndef _FONTTOOL_H
38 #define _FONTTOOL_H
39
40 #include "2d.h"
41 #include "font.h"
42
43 void fonttool_edit_kerning(char *fname1);
44 void fonttool_kerning_copy( char *fname1, char *fname2 );
45 void fonttool_create_font(char *pcx_filename, char *font_filename);
46
47 void fonttool_read( char *fname2, font *fnt2 );
48 void fonttool_copy_kern( font *fnt1, font *fnt2 );
49 void fonttool_dump( char *fname1, font *fnt1 );
50 void fonttool_remove_kerning( font *fnt );
51 void fonttool_resync_kerning(font *fnt);
52
53
54 #endif
55