1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

r7345: add WritePrinter(), AbortPrinter() and ReadPrinter() idl

metze
(This used to be commit 1fc617e871)
This commit is contained in:
Stefan Metzmacher 2005-06-06 16:05:22 +00:00 committed by Gerald (Jerry) Carter
parent ca7baa3c9f
commit 3da5d18fe1

View File

@ -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
);
/******************/