struct print_other_info {
short alrtpr_jobid;
short alrtpr_status;
long alrtpr_submitted;
long alrtpr_size;
};
/* followed by consecutive ASCIIZ strings
unsigned char computername[];
unsigned char username[];
unsigned char queuename[];
unsigned char destname[];
unsigned char status_string[];
*/
where:
- alrtpr_jobid is the identification number of
the print job.
- alrtpr_status indicates the status of the print
job.
- alrtpr_submitted is a time stamp indicating
when the print job was submitted.
- alrtpr_size indicates the size (in bytes) of
the print job.
- computername is an ASCIIZ string indicating
the requester or server that submitted the print job.
- username is an ASCIIZ string indicating the
user that requested the printing.
- queuename is an ASCIIZ string indicating the
queue that handled the print job.
- destname is an ASCIIZ string indicating the
printer that handled the job.
- status_string is information that the print
processor returns. This string corresponds to status_string in the
printjob data structure for the print job.
[Back]
[Next]