1 #include "wine/wingdi16.h"
5 enum data_types {dfChar, dfShort, dfLong, dfString};
8 #define ERROR_VERSION 2
10 #define ERROR_MEMORY 4
13 typedef struct tagFontHeader
15 short dfVersion; /* Version */
16 long dfSize; /* Total File Size */
17 char dfCopyright[60]; /* Copyright notice */
18 FONTINFO16 fi; /* FONTINFO structure */
21 typedef struct WinCharStruct
23 unsigned int charWidth;
27 typedef struct fntFontStruct
30 WinCharS *dfCharTable;
31 unsigned char *dfDeviceP;
32 unsigned char *dfFaceP;
33 unsigned char *dfBitsPointerP;
34 unsigned char *dfBitsOffsetP;