diff options
author | Stefan Metzmacher <metze@samba.org> | 2005-06-06 16:05:22 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:17:45 -0500 |
commit | 3da5d18fe1cb0da959ba079dce5bab104c1615ca (patch) | |
tree | 7a2ca08d56b338d02c7b190ed921b105506cd514 /source4/librpc/idl | |
parent | ca7baa3c9fc4814b7033f68a88ddac8072d62e2a (diff) | |
download | samba-3da5d18fe1cb0da959ba079dce5bab104c1615ca.tar.gz samba-3da5d18fe1cb0da959ba079dce5bab104c1615ca.tar.bz2 samba-3da5d18fe1cb0da959ba079dce5bab104c1615ca.zip |
r7345: add WritePrinter(), AbortPrinter() and ReadPrinter() idl
metze
(This used to be commit 1fc617e871729bccf38c0b5dd8316f78d2de727d)
Diffstat (limited to 'source4/librpc/idl')
-rw-r--r-- | source4/librpc/idl/spoolss.idl | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/source4/librpc/idl/spoolss.idl b/source4/librpc/idl/spoolss.idl index be5dac8fb3..3cbd7fd080 100644 --- a/source4/librpc/idl/spoolss.idl +++ b/source4/librpc/idl/spoolss.idl @@ -646,6 +646,10 @@ /******************/ /* Function: 0x13 */ WERROR spoolss_WritePrinter( + [in,ref] policy_handle *handle, + [in] DATA_BLOB data, + [in,value(r->in.data.length)] uint32 _data_size, + [out] uint32 num_written ); /******************/ @@ -657,11 +661,16 @@ /******************/ /* Function: 0x15 */ WERROR spoolss_AbortPrinter( + [in,ref] policy_handle *handle ); /******************/ /* Function: 0x16 */ WERROR spoolss_ReadPrinter( + [in,ref] policy_handle *handle, + [in] uint32 data_size, + [out] DATA_BLOB data, + [out,value(r->out.data.length)] uint32 _data_size ); /******************/ |