blob: 39ed6f9e7bf9d422256b0102b3863200f5812ac5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* fontreader.h - functions for reading PK fonts
$Id: fontreader.h,v 0.2 1997/03/28 03:17:08 tjchol01 Exp $
Authors: Andrew Trevorrow, Ian Dall, Geoffrey Tobin, Tomasz J. Cholewo
*/
#ifndef __FONTREADER_H__
#define __FONTREADER_H__
#include "dvgt.h"
extern void InitFontReader ();
extern void PixelTableRoutine PARAMS ((fontinfo * currfont));
extern boolean GetBitmap PARAMS ((int ht, int wd, int mapadr, int_or_mptr * bitmap));
extern boolean BuildFileSpec PARAMS ((const char *areas, const char *name, String spec));
extern boolean BuildFontSpec PARAMS ((fontinfo * fontptr));
extern boolean OpenFontFile PARAMS ((char *name));
extern void CloseFontFile ();
#endif /* __FONTREADER_H__ */
/* end fontreader.h */
|