From 2ac8de0d6972332a44c739edb8b90020324fa355 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 25 Jul 2006 20:40:31 +0000 Subject: r17243: some svcctl idl fixes from metze (This used to be commit 7b136ddf488b7b4a1aae31c9927b027216e60ae5) --- source4/librpc/idl/svcctl.idl | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'source4/librpc/idl/svcctl.idl') diff --git a/source4/librpc/idl/svcctl.idl b/source4/librpc/idl/svcctl.idl index d91131760e..97460217f5 100644 --- a/source4/librpc/idl/svcctl.idl +++ b/source4/librpc/idl/svcctl.idl @@ -165,20 +165,20 @@ /*****************/ /* Function 0x0c */ WERROR svcctl_CreateServiceW([in,ref] policy_handle *scmanager_handle, - [in,ref] [string,charset(UTF16)] uint16 *ServiceName, + [in] [string,charset(UTF16)] uint16 ServiceName[], [in] [string,charset(UTF16)] uint16 *DisplayName, [in] uint32 desired_access, [in] uint32 type, [in] uint32 start_type, [in] uint32 error_control, - [in,ref] [string,charset(UTF16)] uint16 *binary_path, + [in] [string,charset(UTF16)] uint16 binary_path[], [in] [string,charset(UTF16)] uint16 *LoadOrderGroupKey, [in,out] uint32 *TagId, - [in] [string,charset(UTF16)] uint16 *dependencies, - [in] uint32 fix_len_dependencies, + [in,size_is(dependencies_size)] uint8 *dependencies, + [in] uint32 dependencies_size, [in] [string,charset(UTF16)] uint16 *service_start_name, - [in] [string,charset(UTF16)] uint16 *password, - [in] uint32 fix_len_password, + [in,size_is(password_size)] uint8 *password, + [in] uint32 password_size, [out,ref] policy_handle *handle); /*****************/ @@ -213,7 +213,7 @@ /*****************/ /* Function 0x10 */ WERROR svcctl_OpenServiceW([in,ref] policy_handle *scmanager_handle, - [in,ref] [string,charset(UTF16)] uint16 *ServiceName, + [in] [string,charset(UTF16)] uint16 ServiceName[], [in] uint32 access_mask, [out,ref] policy_handle *handle); -- cgit