mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
fix SCM sync event name
svn path=/trunk/; revision=27693
This commit is contained in:
parent
4aa6574ca2
commit
029287899f
1 changed files with 2 additions and 2 deletions
|
@ -69,14 +69,14 @@ ScmCreateStartEvent(PHANDLE StartEvent)
|
|||
hEvent = CreateEvent(NULL,
|
||||
TRUE,
|
||||
FALSE,
|
||||
TEXT("SvcctrlStartEvent_A3725DX"));
|
||||
TEXT("SvcctrlStartEvent_A3752DX"));
|
||||
if (hEvent == NULL)
|
||||
{
|
||||
if (GetLastError() == ERROR_ALREADY_EXISTS)
|
||||
{
|
||||
hEvent = OpenEvent(EVENT_ALL_ACCESS,
|
||||
FALSE,
|
||||
TEXT("SvcctrlStartEvent_A3725DX"));
|
||||
TEXT("SvcctrlStartEvent_A3752DX"));
|
||||
if (hEvent == NULL)
|
||||
{
|
||||
return FALSE;
|
||||
|
|
Loading…
Reference in a new issue