diff options
author | Günther Deschner <gd@samba.org> | 2009-03-16 21:36:18 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-03-17 12:15:16 +0100 |
commit | 3a6b5fe6c11cf395686f672635f15503d418dfb1 (patch) | |
tree | 47dadf37d30d64e753c8048daaad94775b814ea7 | |
parent | 12c6ac6a434325d7e9837bbea6d35482767251ba (diff) | |
download | samba-3a6b5fe6c11cf395686f672635f15503d418dfb1.tar.gz samba-3a6b5fe6c11cf395686f672635f15503d418dfb1.tar.bz2 samba-3a6b5fe6c11cf395686f672635f15503d418dfb1.zip |
spoolss: use nstring_array in spoolss_EnumPrinterKey.
Guenther
-rw-r--r-- | librpc/idl/spoolss.idl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/librpc/idl/spoolss.idl b/librpc/idl/spoolss.idl index 9eb933e323..529d44edd5 100644 --- a/librpc/idl/spoolss.idl +++ b/librpc/idl/spoolss.idl @@ -2222,8 +2222,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] [size_is(key_buffer_size/2)] uint16 *key_buffer, - [in] uint32 key_buffer_size, + [out,ref] [subcontext(0),subcontext_size(offered)] nstring_array **key_buffer, + [in] uint32 offered, [out,ref] uint32 *needed ); |