◄Up► ◄Next► ◄Previous► ──────────────────────────────────────────────────────────────────────────── typedef struct _PCMHEADER { WORD pcmMagic; WORD pcmVersion; DWORD pcmSize; DWORD pcmTitle; DWORD pcmPFMList; } PCMHEADER; The PCMHEADER structure contains information about the PCM file. Member Description ──────────────────────────────────────────────────────────────────────────── pcmMagic Contains the magic number 3244 (0x0CAC). The Printer Font Installer uses it to recognize PCM files when no FINSTALL.DIR file is supplied with the PCM file. pcmVersion Contains the version number of the PCM file. The upper byte contains the version number and the lower byte the revision number, both in BCD. pcmSize Contains the size (in bytes) of the entire PCM file. pcmTitle Specifies the offset from the beginning of the file to the title string for the cartridge. pcmPFMList Specifies the offset from the beginning of the file to the first PFM. ♦