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..." |
mNo edit summary |
||
| Line 1: | Line 1: | ||
Information about fonts in the printer, returned by the BIDI_Q_FONTS structure. | Information about fonts in the printer, returned by the BIDI_Q_FONTS structure. | ||
<PRE> | <PRE> | ||
typedef struct _PRTFONTS { | typedef struct _PRTFONTS { | ||
Latest revision as of 14:37, 3 April 2025
Information about fonts in the printer, returned by the BIDI_Q_FONTS structure.
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;