mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Fixed definition of ScmrChangeServiceConfigW:
- lpBinaryPathName must be a [unique] pointer. svn path=/trunk/; revision=18742
This commit is contained in:
parent
4c02f58b0c
commit
43e26abb6c
1 changed files with 6 additions and 4 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue