24 lines
841 B
C
24 lines
841 B
C
|
#ifndef _PR_SERVER_H_
|
||
|
#define _PR_SERVER_H_
|
||
|
|
||
|
// spool Attributes
|
||
|
#define PSRV_SPOOL_ATTR_MIMETYPE "_spool/MimeType"
|
||
|
#define PSRV_SPOOL_ATTR_PAGECOUNT "_spool/Page Count"
|
||
|
#define PSRV_SPOOL_ATTR_DESCRIPTION "_spool/Description"
|
||
|
#define PSRV_SPOOL_ATTR_PRINTER "_spool/Printer"
|
||
|
#define PSRV_SPOOL_ATTR_STATUS "_spool/Status"
|
||
|
#define PSRV_SPOOL_ATTR_ERRCODE "_spool/_errorcode"
|
||
|
|
||
|
// printer attributes
|
||
|
#define PSRV_PRINTER_ATTR_DRV_NAME "Driver Name"
|
||
|
#define PSRV_PRINTER_ATTR_PRT_NAME "Printer Name"
|
||
|
#define PSRV_PRINTER_ATTR_COMMENTS "Comments"
|
||
|
#define PSRV_PRINTER_ATTR_STATE "state"
|
||
|
#define PSRV_PRINTER_ATTR_TRANSPORT "transport"
|
||
|
#define PSRV_PRINTER_ATTR_TRANSPORT_ADDR "transport_address"
|
||
|
#define PSRV_PRINTER_ATTR_CNX "connection"
|
||
|
#define PSRV_PRINTER_ATTR_PNP "_PNP"
|
||
|
#define PSRV_PRINTER_ATTR_MDL "_MDL"
|
||
|
|
||
|
#endif
|