diff options
author | Tim Potter <tpot@samba.org> | 2003-11-28 06:39:06 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-11-28 06:39:06 +0000 |
commit | b0ba0462a4e85a26c45a4e763655d5b3885a147f (patch) | |
tree | 7e37df5e7712d012c5b92cae9ee379d97bd6780e /source4/librpc/idl | |
parent | 606514b0774c42c9f95a726cfa2d68a2a3c2ba32 (diff) | |
download | samba-b0ba0462a4e85a26c45a4e763655d5b3885a147f.tar.gz samba-b0ba0462a4e85a26c45a4e763655d5b3885a147f.tar.bz2 samba-b0ba0462a4e85a26c45a4e763655d5b3885a147f.zip |
Fix bug in EnumPrinterData test.
Implement GetPrinterData RPC.
(This used to be commit 270c4fe389fb67ccbe0b9174267b40738ca43052)
Diffstat (limited to 'source4/librpc/idl')
-rw-r--r-- | source4/librpc/idl/spoolss.idl | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/source4/librpc/idl/spoolss.idl b/source4/librpc/idl/spoolss.idl index f8afdfd84e..29b114b577 100644 --- a/source4/librpc/idl/spoolss.idl +++ b/source4/librpc/idl/spoolss.idl @@ -326,12 +326,17 @@ /******************/ /* Function: 0x1a */ - WERROR spoolss_1a( + WERROR spoolss_GetPrinterData( + [in,ref] policy_handle *handle, + [in] unistr value_name, + [out] uint32 type, + [out] DATA_BLOB buffer, + [in,out,ref] uint32 *buf_size ); /******************/ /* Function: 0x1b */ - WERROR spoolss_1b( + WERROR spoolss_SetPrinterData( ); /******************/ @@ -630,7 +635,7 @@ [in,ref] policy_handle *handle, [in] uint32 enum_index, [in] uint32 value_offered, - [out] lstring value, + [out] lstring value_name, [out] uint32 value_needed, [out] uint32 printerdata_type, [out] DATA_BLOB data, |