From 6ca23e307495c26782ee5c716890fe4f4be804cd Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Sun, 3 Feb 2008 02:54:23 +0100 Subject: wkssvc.idl: fix idl for wkssvc_NetrGetJoinableOus[2]() metze (This used to be commit 3f2edcc341e5b0e4369e8f601ef0cb6ecf73b4c7) --- source4/librpc/idl/wkssvc.idl | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'source4/librpc/idl/wkssvc.idl') diff --git a/source4/librpc/idl/wkssvc.idl b/source4/librpc/idl/wkssvc.idl index 38c16c7d86..023ce59ad9 100644 --- a/source4/librpc/idl/wkssvc.idl +++ b/source4/librpc/idl/wkssvc.idl @@ -647,7 +647,11 @@ import "srvsvc.idl", "lsa.idl"; [in,unique] [string,charset(UTF16)] uint16 *Account, [in,unique] [string,charset(UTF16)] uint16 *unknown, [in,out,ref] uint32 *num_ous, - [out,ref] [size_is(*num_ous)] [string,charset(UTF16)] uint16 ***ous + /* + * this is a [ref] pointer to a [unique] pointer to an + * array of [unique] pointers to a string array + */ + [out,ref] [size_is(,*num_ous)] [string,charset(UTF16)] uint16 ***ous ); typedef [flag(NDR_PAHEX)] struct { @@ -731,7 +735,11 @@ import "srvsvc.idl", "lsa.idl"; [in,unique] [string,charset(UTF16)] uint16 *Account, [in,unique] wkssvc_PasswordBuffer *EncryptedPassword, [in,out,ref] uint32 *num_ous, - [out,ref] [size_is(*num_ous)] [string,charset(UTF16)] uint16 ***ous + /* + * this is a [ref] pointer to a [unique] pointer to an + * array of [unique] pointers to a string array + */ + [out,ref] [size_is(,*num_ous)] [string,charset(UTF16)] uint16 ***ous ); /*****************************/ -- cgit