Jump to content

PRTSTORAGEL

From EDM2
Revision as of 18:50, 8 February 2020 by Martini (talk | contribs) (Created page with "Information about the printer storage media, returned by the BIDI_Q_STORAGE command. ==Example Code== <PRE> typedef struct _PRTSTORAGEL { ULONG cTotal; ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Information about the printer storage media, returned by the BIDI_Q_STORAGE command.

Example Code

typedef struct _PRTSTORAGEL {
  ULONG          cTotal;                           /*  Total number of storage media in the printer. */
  ULONG          cReturned;                        /*  Number of PRTSTORAGE data structures that follow. */
  PRTSTORAGE     prtStorage[1];  /*  Contains a PRTSTORAGE data structure. */
} PRTSTORAGEL;

typedef PRTSTORAGEL *PPRTSTORAGEL;