From: Eric Kohl Date: Mon, 24 Oct 2005 17:13:08 +0000 (+0000) Subject: Fixed definition of ScmrChangeServiceConfigW: X-Git-Tag: backups/ros-branch-0_2_9@19949~1131 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=43e26abb6c4869d88200a51cd5725a02124c7759;ds=inline Fixed definition of ScmrChangeServiceConfigW: - lpBinaryPathName must be a [unique] pointer. svn path=/trunk/; revision=18742 --- 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,