PRTFONTS: Difference between revisions
Appearance
Created page with "Information about fonts in the printer, returned by the BIDI_Q_FONTS structure. ==Example Code== <PRE> typedef struct _PRTFONTS { BYTE interpreterID; /* Interpr..." |
(No difference)
|
Revision as of 17:39, 8 February 2020
Information about fonts in the printer, returned by the BIDI_Q_FONTS structure.
Example Code
typedef struct _PRTFONTS {
BYTE interpreterID; /* Interpreter identifier that returns this font's information. */
BYTE bReserved; /* Reserved; must be 0 (zero). */
USHORT usStorageTypeID; /* Font storage-type identifier. */
ULONG ulStorageType; /* Font storage type. */
ULONG ulFontID; /* Font identifier number. */
ULONG ulTechnology; /* Font technology. */
ULONG ulpszName; /* Offset to null-terminating font-name string. */
ULONG ulpszDescription; /* Offset to null-terminating font-description string. */
} PRTFONTS;
typedef PRTFONTS *PPRTFONTS;