diff options
author | Günther Deschner <gd@samba.org> | 2009-12-10 14:19:28 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-12-10 17:48:49 +0100 |
commit | 0ecb7f6ab28d7b7c1844554289f5ae8e876b1dcf (patch) | |
tree | 4dfe1415f0c4303530f53605a2849589b7e9f492 | |
parent | cf2561473f7bd0bcef5c562c1e901d4ad17e6ee3 (diff) | |
download | samba-0ecb7f6ab28d7b7c1844554289f5ae8e876b1dcf.tar.gz samba-0ecb7f6ab28d7b7c1844554289f5ae8e876b1dcf.tar.bz2 samba-0ecb7f6ab28d7b7c1844554289f5ae8e876b1dcf.zip |
spoolss: use spoolss_KeyNames in spoolss_EnumPrinterKey.
Guenther
-rw-r--r-- | librpc/idl/spoolss.idl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/librpc/idl/spoolss.idl b/librpc/idl/spoolss.idl index a909c17d7f..bdb166be59 100644 --- a/librpc/idl/spoolss.idl +++ b/librpc/idl/spoolss.idl @@ -2618,7 +2618,8 @@ import "misc.idl", "security.idl", "winreg.idl"; [public] WERROR spoolss_EnumPrinterKey( [in, ref] policy_handle *handle, [in] [string,charset(UTF16)] uint16 key_name[], - [out,ref] spoolss_StringArray2 *key_buffer, + [out,ref] uint32 *_ndr_size, + [out,ref,subcontext(0),subcontext_size(*_ndr_size*2),switch_is(*_ndr_size)] spoolss_KeyNames *key_buffer, [in] uint32 offered, [out,ref] uint32 *needed ); |