contrib/OWB: add correct SDL dependency, fix compilers used
[AROS-Contrib.git] / freetype1 / contrib / ttf2pk / pklib.h
blob5283603c3923b4771e71e72b7ebaa7230456fc40
1 /*
2 * pklib.h
4 * This file is part of the ttf2pk package.
6 * Copyright 1997-1999 by
7 * Frederic Loyer <loyer@ensta.fr>
8 * Werner Lemberg <wl@gnu.org>
9 */
11 #ifndef PKLIB_H
12 #define PKLIB_H
14 typedef unsigned char byte;
17 void TFMopen(char **filename);
19 void PKopen(char *filename, char *ident, int resolution);
21 void PKputglyph(int cc, int llx, int lly, int urx, int ury,
22 int w, int h, byte *b);
24 void PKclose(void);
26 #endif /* PKLIB_H */
29 /* end */