The PRQINFO3 data structure has the following format:
typedef struct_PRQINFO3 }
PSZ pszName;
USHORT uPriority;
USHORT uStarttime;
USHORT uUntiltime;
USHORT pad1;
PSZ pszSepFile;
PSZ pszPrProc;
PSZ pszParms;
PSZ pszComment;
USHORT fsStatus;
USHORT cJobs;
PSZ pszPrinters;
PSZ pszDriverName;
PDRIVDATA pDriverData;
} PRQINFO3;
where:
- pszName points to an ASCIIZ string that contains
the name of the printer queue. The length of pszName is defined
in BSEDOS.H.
- The next 3 fields in this data structure are identical
to those in the previous level.
- pad_1 double word-aligns the data structure
component.
- The next 6 fields in this data structure are identical
to those in the previous level.
- pszPrinters points to an ASCIIZ string that
contains a list of printers that can print from the printer queue.
- pszDriverName points to an ASCIIZ string that
contains the default driver for the queue. The device driver already must
have been installed.
- pDriverData points to the device driver data
for the default driver. This data is specific to the device driver and
is used only if pszDriverName is not a null pointer or null string.
[Back]
[Next]