blob: c5460c002b91aa6897a9a847f92a84ccfaccfff1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/*
* pklib.h
*
* This file is part of the ttf2pk package.
*
* Copyright 1997-1999, 2000 by
* Frederic Loyer <loyer@ensta.fr>
* Werner Lemberg <wl@gnu.org>
*/
#ifndef PKLIB_H
#define PKLIB_H
typedef unsigned char byte;
void TFMopen(char **filename);
void PKopen(char *filename, char *ident, int resolution);
void PKputglyph(int cc, int llx, int lly, int urx, int ury,
int w, int h, byte *b);
void PKclose(void);
#endif /* PKLIB_H */
/* end */
|