diff options
author | Günther Deschner <gd@samba.org> | 2008-11-14 11:41:40 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-11-17 13:17:31 +0100 |
commit | 738d066768a8aebf0d9522e49d30e2df0ad4f07b (patch) | |
tree | 7e247fc61c6bcd8b2edfec5b3e103fa0bb72287b /librpc/idl/svcctl.idl | |
parent | 2409f216cfb74079687929d670b8ebc29e54a038 (diff) | |
download | samba-738d066768a8aebf0d9522e49d30e2df0ad4f07b.tar.gz samba-738d066768a8aebf0d9522e49d30e2df0ad4f07b.tar.xz samba-738d066768a8aebf0d9522e49d30e2df0ad4f07b.zip |
svcctl: fix idl for svcctl_EnumServicesStatusW.
Guenther
Diffstat (limited to 'librpc/idl/svcctl.idl')
-rw-r--r-- | librpc/idl/svcctl.idl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/librpc/idl/svcctl.idl b/librpc/idl/svcctl.idl index 7e18245e86a..381fd6356a6 100644 --- a/librpc/idl/svcctl.idl +++ b/librpc/idl/svcctl.idl @@ -218,10 +218,10 @@ import "misc.idl", "security.idl"; [in,ref] policy_handle *handle, [in] uint32 type, [in] uint32 state, - [in] uint32 buf_size, - [out,size_is(buf_size)] uint8 service[*], - [out,ref] uint32 *bytes_needed, - [out,ref] uint32 *services_returned, + [out,ref,size_is(buf_size)] uint8 *service, + [in] [range(0,262144)] uint32 buf_size, + [out,ref] [range(0,262144)] uint32 *bytes_needed, + [out,ref] [range(0,262144)] uint32 *services_returned, [in,out,unique] uint32 *resume_handle ); |