mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 20:56:26 +00:00
call the correct event on system boot
svn path=/trunk/; revision=27699
This commit is contained in:
parent
87bd668b8c
commit
e55869be78
1 changed files with 3 additions and 3 deletions
|
@ -64,18 +64,18 @@ StartServicesManager(VOID)
|
||||||
{
|
{
|
||||||
Sleep(1000);
|
Sleep(1000);
|
||||||
|
|
||||||
TRACE("WL: Attempting to open event \"SvcctrlStartEvent_A3725DX\"\n");
|
TRACE("WL: Attempting to open event \"SvcctrlStartEvent_A3752DX\"\n");
|
||||||
ServicesInitEvent = OpenEventW(
|
ServicesInitEvent = OpenEventW(
|
||||||
SYNCHRONIZE,
|
SYNCHRONIZE,
|
||||||
FALSE,
|
FALSE,
|
||||||
L"SvcctrlStartEvent_A3725DX");
|
L"SvcctrlStartEvent_A3752DX");
|
||||||
if (ServicesInitEvent)
|
if (ServicesInitEvent)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!ServicesInitEvent)
|
if (!ServicesInitEvent)
|
||||||
{
|
{
|
||||||
ERR("WL: Failed to open event \"SvcctrlStartEvent_A3725DX\"\n");
|
ERR("WL: Failed to open event \"SvcctrlStartEvent_A3752DX\"\n");
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue