mirror of
https://github.com/reactos/reactos.git
synced 2025-05-25 04:03:56 +00:00
[SERVICES]
- Fix syntax errors in asynchronous pipe I/O code ROSTESTS-56 svn path=/trunk/; revision=61002
This commit is contained in:
parent
f6762917ee
commit
51f07b7546
1 changed files with 3 additions and 3 deletions
|
@ -893,7 +893,7 @@ ScmControlService(PSERVICE Service,
|
|||
DWORD dwError = ERROR_SUCCESS;
|
||||
BOOL bResult;
|
||||
#ifdef USE_ASYNCHRONOUS_IO
|
||||
OVERLAPPED Overlapped = {0, 0, 0, 0, 0};
|
||||
OVERLAPPED Overlapped = {0};
|
||||
#endif
|
||||
|
||||
DPRINT("ScmControlService() called\n");
|
||||
|
@ -1111,7 +1111,7 @@ ScmSendStartCommand(PSERVICE Service,
|
|||
PWSTR pArgPtr;
|
||||
BOOL bResult;
|
||||
#ifdef USE_ASYNCHRONOUS_IO
|
||||
OVERLAPPED Overlapped = {0, 0, 0, 0, 0};
|
||||
OVERLAPPED Overlapped = {0};
|
||||
#endif
|
||||
|
||||
DPRINT("ScmSendStartCommand() called\n");
|
||||
|
@ -1335,7 +1335,7 @@ ScmWaitForServiceConnect(PSERVICE Service)
|
|||
DWORD dwError = ERROR_SUCCESS;
|
||||
BOOL bResult;
|
||||
#ifdef USE_ASYNCHRONOUS_IO
|
||||
OVERLAPPED Overlapped = {0, 0, 0, 0, 0};
|
||||
OVERLAPPED Overlapped = {0};
|
||||
#endif
|
||||
|
||||
DPRINT("ScmWaitForServiceConnect()\n");
|
||||
|
|
Loading…
Reference in a new issue