diff options
author | Günther Deschner <gd@samba.org> | 2009-03-14 01:33:41 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-03-17 10:57:57 +0100 |
commit | 92e6525ae124c97d31a46b9fe3d6d1415c219e9f (patch) | |
tree | bb520fec89f2c55764302975f6f4cc57b84186c2 | |
parent | 6df9e1f7aafe6da4b90271dda8d6cf3847a8d39e (diff) | |
download | samba-92e6525ae124c97d31a46b9fe3d6d1415c219e9f.tar.gz samba-92e6525ae124c97d31a46b9fe3d6d1415c219e9f.tar.bz2 samba-92e6525ae124c97d31a46b9fe3d6d1415c219e9f.zip |
spoolss: make spoolss_GetPrinterData out.data ref pointers.
Guenther
-rw-r--r-- | librpc/idl/spoolss.idl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/librpc/idl/spoolss.idl b/librpc/idl/spoolss.idl index f837afbd5d..1b3d9ab24b 100644 --- a/librpc/idl/spoolss.idl +++ b/librpc/idl/spoolss.idl @@ -1324,19 +1324,19 @@ import "misc.idl", "security.idl", "winreg.idl"; [in] [string,charset(UTF16)] uint16 value_name[], [in] uint32 offered, [out,ref] spoolss_PrinterDataType *type, - [out] DATA_BLOB data, + [out,ref] DATA_BLOB *data, [out,ref] uint32 *needed ); [noopnum,noprint,public] void __spoolss_GetPrinterData( [in] spoolss_PrinterDataType type, - [out,switch_is(type)] spoolss_PrinterData data + [out,ref,switch_is(type)] spoolss_PrinterData *data ); [nopull,nopush,public] WERROR spoolss_GetPrinterData( [in,ref] policy_handle *handle, [in] [string,charset(UTF16)] uint16 value_name[], [in] uint32 offered, [out,ref] spoolss_PrinterDataType *type, - [out,subcontext(4),subcontext_size(offered),switch_is(*type)] spoolss_PrinterData data, + [out,ref,subcontext(4),subcontext_size(offered),switch_is(*type)] spoolss_PrinterData *data, [out,ref] uint32 *needed ); |