Printers and Fonts Kit(3.1) (pfk31qh.hlp) (Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
PFMHEADER
                                                     Up Next Previous
────────────────────────────────────────────────────────────────────────────
 
typedef struct PFMHEADER {
    WORD  dfVersion;
    WORD  dfSize;
    char  dfCopyright[60];
    WORD  dfType;
    WORD  dfPoints;
    WORD  dfVertRes;
    WORD  dfHorizRes;
    WORD  dfAscent;
    WORD  dfInternalLeading;
    WORD  dfExternalLeading;
    BYTE  dfItalic;
    BYTE  dfUnderline;
    BYTE  dfStrikeOut;
    WORD  dfWeight;
    BYTE  dfCharSet;
    WORD  dfPixWidth;
    WORD  dfPixHeight;
    BYTE  dfPitchAndFamily;
    WORD  dfAvgWidth;
    WORD  dfMaxWidth;
    BYTE  dfFirstChar;
    BYTE  dfLastChar;
    BYTE  dfDefaultChar;
    BYTE  dfBreakChar;
    WORD  dfWidthBytes;
    DWORD dfDevice;
    DWORD dfFace;
    DWORD dfBitsPointer;
    DWORD dfBitsOffset;
} PFMHEADER;
 
The PFMHEADER structure contains the information about a Windows raster or
vector font. The PFMHEADER structure is identical to the Windows 2.x
FONTINFO structure. The PFMHEADER structure is also identical to a font-file
header. For more information about the FONTINFO structure, see the Microsoft
Windows Device Driver Adaptation Guide.
 
                                      ♦