Printers and Fonts Kit(3.1) (pfk31qh.hlp) (Topic list)
DRIVERINFO
                                                     Up Next Previous
────────────────────────────────────────────────────────────────────────────
 
typedef struct tagDRIVERINFO {
    WORD epSize;      /* size of this data structure */
    WORD epVersion;   /* number indicating structure version */
    DWORD epMemUsage; /* amount of memory font takes up in printer */
    DWORD epEscape;   /* pointer to escape that selects the font */
    TRANSTABLE xtbl;  /* character-set translation information */
} DRIVERINFO;
 
The DRIVERINFO structure contains information that is specific to the given
device. The structure described here is intended to be used in PFM file for
the HP LaserJet printer driver that uses Printer Control Language (PCL).
 
Member      Description
────────────────────────────────────────────────────────────────────────────
 
 
epSize      Specifies the size of this structure (number of bytes).
 
epVersion   Specifies the version of this structure, currently 1.
 
epMemUsage  Specifies the amount of printer memory (in bytes) that this font
            uses.
 
epEscape    Specifies the byte offset from the beginning of the file to an
            escape string calling the font.
 
xtbl        Specifies a TRANSTABLE structure containing
            character-translation data.
 
 
                                      ♦