diff options
author | Tim Potter <tpot@samba.org> | 2003-11-28 10:34:58 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-11-28 10:34:58 +0000 |
commit | d55fc1c9f28414a0182e571d5b5d60b4a3d2b1d9 (patch) | |
tree | 6b642dcd364117780b2015098bfdc6af43e372ec /source4/librpc | |
parent | f83f0cb0605368387358782179460ca4d75a9541 (diff) | |
download | samba-d55fc1c9f28414a0182e571d5b5d60b4a3d2b1d9.tar.gz samba-d55fc1c9f28414a0182e571d5b5d60b4a3d2b1d9.tar.bz2 samba-d55fc1c9f28414a0182e571d5b5d60b4a3d2b1d9.zip |
Add SetPrinterData, DeletePrinterData.
(This used to be commit ea534f82d0620cbda5a960e492ec2fc1702fe975)
Diffstat (limited to 'source4/librpc')
-rw-r--r-- | source4/librpc/idl/spoolss.idl | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/source4/librpc/idl/spoolss.idl b/source4/librpc/idl/spoolss.idl index 29b114b577..15d1d12da0 100644 --- a/source4/librpc/idl/spoolss.idl +++ b/source4/librpc/idl/spoolss.idl @@ -336,7 +336,12 @@ /******************/ /* Function: 0x1b */ - WERROR spoolss_SetPrinterData( + WERROR spoolss_SetPrinterData( + [in,ref] policy_handle *handle, + [in] unistr value_name, + [in] uint32 type, + [in] DATA_BLOB buffer, + [in] uint32 real_len ); /******************/ @@ -644,7 +649,9 @@ /******************/ /* Function: 0x49 */ - WERROR spoolss_49( + WERROR spoolss_DeletePrinterData( + [in,ref] policy_handle *handle, + [in] unistr value_name ); /******************/ |