diff options
author | Günther Deschner <gd@samba.org> | 2008-03-20 01:32:20 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-03-20 01:32:20 +0100 |
commit | 5a9d296f8e8bfbcef510ddcc7e79c2493b43fc61 (patch) | |
tree | 4e108f75b246704bd48e60ec3e4388036ba83a45 /source3/librpc/idl | |
parent | d8acf199876867189f212837059d1d6ac401c6b5 (diff) | |
download | samba-5a9d296f8e8bfbcef510ddcc7e79c2493b43fc61.tar.gz samba-5a9d296f8e8bfbcef510ddcc7e79c2493b43fc61.tar.bz2 samba-5a9d296f8e8bfbcef510ddcc7e79c2493b43fc61.zip |
Fix IDL for svcctl_EnumDependentServicesW().
Guenther
(This used to be commit 46bfded43dcabdd2302d82920fb2a37c41e58126)
Diffstat (limited to 'source3/librpc/idl')
-rw-r--r-- | source3/librpc/idl/svcctl.idl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/librpc/idl/svcctl.idl b/source3/librpc/idl/svcctl.idl index e36a0918bf..00542bdb6d 100644 --- a/source3/librpc/idl/svcctl.idl +++ b/source3/librpc/idl/svcctl.idl @@ -205,10 +205,10 @@ WERROR svcctl_EnumDependentServicesW( [in,ref] policy_handle *service, [in] uint32 state, - [out,unique] ENUM_SERVICE_STATUS *service_status, - [in] uint32 buf_size, - [out,ref] uint32 *bytes_needed, - [out,ref] uint32 *services_returned + [out,ref,size_is(buf_size)] uint8 *service_status, + [in,range(0,0x40000)] uint32 buf_size, + [out,ref,range(0,0x40000)] uint32 *bytes_needed, + [out,ref,range(0,0x40000)] uint32 *services_returned ); /*****************/ |