PRTJOBSL: Difference between revisions
Appearance
Created page with "Information returned by the BIDI_Q_JOBS_COMPLETE and BIDI_Q_JOBS_QUEUED commands. ==Example Code== <PRE> typedef struct _PRTJOBSL { ULONG cTotal; /* Total jobs ..." |
mNo edit summary |
||
Line 1: | Line 1: | ||
Information returned by the BIDI_Q_JOBS_COMPLETE and BIDI_Q_JOBS_QUEUED commands. | Information returned by the BIDI_Q_JOBS_COMPLETE and BIDI_Q_JOBS_QUEUED commands. | ||
<PRE> | <PRE> | ||
typedef struct _PRTJOBSL { | typedef struct _PRTJOBSL { | ||
Line 10: | Line 9: | ||
typedef PRTJOBSL *PPRTJOBSL; | typedef PRTJOBSL *PPRTJOBSL; | ||
</PRE> | </PRE> | ||
[[Category:Data type]] | [[Category:Data type]] |
Latest revision as of 09:53, 16 May 2020
Information returned by the BIDI_Q_JOBS_COMPLETE and BIDI_Q_JOBS_QUEUED commands.
typedef struct _PRTJOBSL { ULONG cTotal; /* Total jobs meeting criteria. */ ULONG cReturned; /* Number of PRTJOBS data structures that follow. */ PRTJOBS prtJobs; /* Contains a PRTJOBS data structure. */ } PRTJOBSL; typedef PRTJOBSL *PPRTJOBSL;