diff options
author | Tim Potter <tpot@samba.org> | 2003-11-28 11:50:33 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-11-28 11:50:33 +0000 |
commit | 2bb7ff5915bf349e1420152b2be7f297424c7ec6 (patch) | |
tree | 60858a605bf50ead1871a7288cc283f85b4f46f2 /source4/librpc/idl/spoolss.idl | |
parent | d55fc1c9f28414a0182e571d5b5d60b4a3d2b1d9 (diff) | |
download | samba-2bb7ff5915bf349e1420152b2be7f297424c7ec6.tar.gz samba-2bb7ff5915bf349e1420152b2be7f297424c7ec6.tar.bz2 samba-2bb7ff5915bf349e1420152b2be7f297424c7ec6.zip |
GetPrinterDataEx, SetPrinterDataEx, DeletePrinterDataEx.
(This used to be commit e8367f57356bc3da78a6217158f9d639ba4ca5fa)
Diffstat (limited to 'source4/librpc/idl/spoolss.idl')
-rw-r--r-- | source4/librpc/idl/spoolss.idl | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/source4/librpc/idl/spoolss.idl b/source4/librpc/idl/spoolss.idl index 15d1d12da0..69d929561b 100644 --- a/source4/librpc/idl/spoolss.idl +++ b/source4/librpc/idl/spoolss.idl @@ -671,17 +671,30 @@ /******************/ /* Function: 0x4d */ - WERROR spoolss_4d( + WERROR spoolss_SetPrinterDataEx( + [in,ref] policy_handle *handle, + [in] unistr key_name, + [in] unistr value_name, + [in] uint32 type, + [in] DATA_BLOB buffer, + [in,out,ref] uint32 *buf_size ); /******************/ /* Function: 0x4e */ - WERROR spoolss_4e( + WERROR spoolss_GetPrinterDataEx( + [in,ref] policy_handle *handle, + [in] unistr key_name, + [in] unistr value_name, + [out] uint32 type, + [out] DATA_BLOB buffer, + [in,out,ref] uint32 *buf_size ); /******************/ /* Function: 0x4f */ - WERROR spoolss_4f( + WERROR spoolss_EnumPrinterDataEx( + [in,ref] policy_handle *handle ); /******************/ @@ -691,7 +704,10 @@ /******************/ /* Function: 0x51 */ - WERROR spoolss_51( + WERROR spoolss_DeletePrinterDataEx( + [in,ref] policy_handle *handle, + [in] unistr key_name, + [in] unistr value_name ); /******************/ |