PRTSTORAGEL: Difference between revisions
Appearance
Created page with "Information about the printer storage media, returned by the BIDI_Q_STORAGE command. ==Example Code== <PRE> typedef struct _PRTSTORAGEL { ULONG cTotal; ..." |
(No difference)
|
Revision as of 17:50, 8 February 2020
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;