Jump to content

PRTOUTPUTS: Difference between revisions

From EDM2
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; ..."
 
Ak120 (talk | contribs)
mNo edit summary
 
Line 1: Line 1:
Information about the installed printr output bins, returned by the BIDI_Q_OUTPUTBINS command.  
Information about the installed printr output bins, returned by the BIDI_Q_OUTPUTBINS command.


==Example Code==
<PRE>
<PRE>
typedef struct _PRTOUTPUTS {
typedef struct _PRTOUTPUTS {
Line 16: Line 15:


typedef PRTOUTPUTS *PPRTOUTPUTS;
typedef PRTOUTPUTS *PPRTOUTPUTS;
</PRE>
</PRE>


[[Category:Data type]]
[[Category:Data type]]

Latest revision as of 18:14, 5 April 2025

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

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;