PRTINTERPL: Difference between revisions
Appearance
Created page with "Structure returned by the BIDI_Q_INTERPRETER command to list interpreters in the printer. ==Example Code== <PRE> typedef struct _PRTINTERPL { ULONG cTotal; ..." |
(No difference)
|
Latest revision as of 17:45, 8 February 2020
Structure returned by the BIDI_Q_INTERPRETER command to list interpreters in the printer.
Example Code
typedef struct _PRTINTERPL {
ULONG cTotal; /* Total interpreters in the printer. */
ULONG cReturned; /* Number of PRTINTERP data structures that follow. */
PRTINTERP prtInterpreter[1]; /* Contains a PRTINTERP data structure. */
} PRTINTERPL;
typedef PRTINTERPL *PPRTINTERPL;