summaryrefslogtreecommitdiff
path: root/source3/include/rpc_spoolss.h
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2002-01-12 02:37:54 +0000
committerJeremy Allison <jra@samba.org>2002-01-12 02:37:54 +0000
commitc9d350a736ca71f838cf19386b04e972200ee595 (patch)
treefa2642eb249151bebeea09b67dd143900f5cf6ec /source3/include/rpc_spoolss.h
parent973c0b3257298497f2a0023d52616dab80c2317f (diff)
downloadsamba-c9d350a736ca71f838cf19386b04e972200ee595.tar.gz
samba-c9d350a736ca71f838cf19386b04e972200ee595.tar.bz2
samba-c9d350a736ca71f838cf19386b04e972200ee595.zip
Added PRINTER_INFO_4/PRINTER_INFO_5, we're seeing level 5 requested on the wire... so.
Jeremy. (This used to be commit b63b76297835ab8227b98925fa8120ffce1a37d9)
Diffstat (limited to 'source3/include/rpc_spoolss.h')
-rwxr-xr-xsource3/include/rpc_spoolss.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/source3/include/rpc_spoolss.h b/source3/include/rpc_spoolss.h
index e6e5e0ada2..8a10a0ffdb 100755
--- a/source3/include/rpc_spoolss.h
+++ b/source3/include/rpc_spoolss.h
@@ -852,6 +852,24 @@ typedef struct printer_info_3
}
PRINTER_INFO_3;
+typedef struct printer_info_4
+{
+ UNISTR printername;
+ UNISTR servername;
+ uint32 attributes;
+}
+PRINTER_INFO_4;
+
+typedef struct printer_info_5
+{
+ UNISTR printername;
+ UNISTR portname;
+ uint32 attributes;
+ uint32 device_not_selected_timeout;
+ uint32 transmission_retry_timeout;
+}
+PRINTER_INFO_5;
+
typedef struct spool_q_enumprinters
{
uint32 flags;
@@ -869,6 +887,8 @@ typedef struct printer_info_ctr_info
PRINTER_INFO_1 *printers_1;
PRINTER_INFO_2 *printers_2;
PRINTER_INFO_3 *printers_3;
+ PRINTER_INFO_4 *printers_4;
+ PRINTER_INFO_5 *printers_5;
}
PRINTER_INFO_CTR;