Jump to content

PRTOUTPUTS

From EDM2
Revision as of 18:47, 8 February 2020 by Martini (talk | contribs) (Created page with "Information about the installed printr output bins, returned by the BIDI_Q_OUTPUTBINS command. ==Example Code== <PRE> typedef struct _PRTOUTPUTS { BYTE logicalUnit; ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Information about the installed printr output bins, returned by the BIDI_Q_OUTPUTBINS command.

Example Code

typedef struct _PRTOUTPUTS {
  BYTE       logicalUnit;  /*  Logical unit number for this interpreter. */
  BYTE       bReserved;    /*  Reserved; must be 0 (zero). */
  USHORT     usReserved;   /*  Reserved; must be 0 (zero). */
  BYTE       outputID;     /*  Output identifier. */
  BYTE       positions;    /*  Number of output positions for this output device. */
  BYTE       features1;    /*  Output features support byte 1. */
  BYTE       features2;    /*  Output features support byte 2. */
  ULONG      maxCapacity;  /*  Maximum capacity per output position. */
  ULONG      ulpszOutput;  /*  Output description string. */
} PRTOUTPUTS;

typedef PRTOUTPUTS *PPRTOUTPUTS;