From 4ec7597d1154c60f0f55feab93f2dc9c776d56f8 Mon Sep 17 00:00:00 2001 From: Jean-François Micouleau Date: Sat, 10 Jun 2000 22:35:52 +0000 Subject: parsing code for reply[open|close]printer in preparation of the event stuff. J.F. (This used to be commit 1871d4a3f64401f9a6f749ce26d1715e3bcdeac3) --- source3/include/rpc_spoolss.h | 30 +++++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) (limited to 'source3/include/rpc_spoolss.h') diff --git a/source3/include/rpc_spoolss.h b/source3/include/rpc_spoolss.h index 40851533cf2..de3f04ca3db 100755 --- a/source3/include/rpc_spoolss.h +++ b/source3/include/rpc_spoolss.h @@ -1680,10 +1680,38 @@ typedef struct spool_r_getjob NEW_BUFFER *buffer; uint32 needed; uint32 status; - } SPOOL_R_GETJOB; +typedef struct spool_q_replyopenprinter +{ + UNISTR2 string; + uint32 printer; + uint32 type; + NEW_BUFFER *buffer; +} +SPOOL_Q_REPLYOPENPRINTER; + +typedef struct spool_r_replyopenprinter +{ + POLICY_HND handle; + uint32 status; +} +SPOOL_R_REPLYOPENPRINTER; + +typedef struct spool_q_replycloseprinter +{ + POLICY_HND handle; +} +SPOOL_Q_REPLYCLOSEPRINTER; + +typedef struct spool_r_replycloseprinter +{ + POLICY_HND handle; + uint32 status; +} +SPOOL_R_REPLYCLOSEPRINTER; + #define PRINTER_DRIVER_VERSION 2 #define PRINTER_DRIVER_ARCHITECTURE "Windows NT x86" -- cgit