Jump to content

PRTINTERPL

From EDM2
Revision as of 18:45, 8 February 2020 by Martini (talk | contribs) (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; ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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;