From 3da5d18fe1cb0da959ba079dce5bab104c1615ca Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 6 Jun 2005 16:05:22 +0000 Subject: r7345: add WritePrinter(), AbortPrinter() and ReadPrinter() idl metze (This used to be commit 1fc617e871729bccf38c0b5dd8316f78d2de727d) --- source4/librpc/idl/spoolss.idl | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'source4') 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 ); /******************/ -- cgit