From 43e26abb6c4869d88200a51cd5725a02124c7759 Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Mon, 24 Oct 2005 17:13:08 +0000 Subject: [PATCH] Fixed definition of ScmrChangeServiceConfigW: - lpBinaryPathName must be a [unique] pointer. svn path=/trunk/; revision=18742 --- reactos/include/idl/svcctl.idl | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/reactos/include/idl/svcctl.idl b/reactos/include/idl/svcctl.idl index 0327104e6c7..7b592cee2c0 100644 --- a/reactos/include/idl/svcctl.idl +++ b/reactos/include/idl/svcctl.idl @@ -74,14 +74,16 @@ cpp_quote("#endif") /* Function 9 */ DWORD ScmrNotifyBootConfigStatus([in] handle_t BindingHandle, [in] BOOL BootAcceptable); + + /* Function 11 */ - DWORD ScmrChangeServiceConfigW([in] handle_t BiningHandle, + DWORD ScmrChangeServiceConfigW([in] handle_t BindingHandle, [in] SC_HANDLE hSCManager, [in] DWORD dwServiceType, [in] DWORD dwStartType, - [in] DWORD dwErrorControl, - [in, string, ref] LPCWSTR lpBinaryPathName, - [in, string, unique] LPCWSTR lpLoadOrderGroup, + [in] DWORD dwErrorControl, + [in, string, unique] LPCWSTR lpBinaryPathName, + [in, string, unique] LPCWSTR lpLoadOrderGroup, [in, out, unique] LPDWORD lpdwTagId, [in, size_is(dwDependenciesLength), unique] LPCWSTR lpDependencies, [in] DWORD dwDependenciesLength, -- 2.17.1