* Create ScmCreatedEvent when we are done initializing.

svn path=/trunk/; revision=65770
This commit is contained in:
Giannis Adamopoulos 2014-12-20 17:56:00 +00:00
parent cb546b4121
commit 710258ad83

View file

@ -98,6 +98,10 @@ BOOL RPCSS_Initialize(void)
exit_event = __wine_make_process_system();
#else
exit_event = CreateEventW(NULL, FALSE, FALSE, NULL); // never fires
{
HANDLE hStartEvent = CreateEventW(NULL, TRUE, FALSE, L"ScmCreatedEvent");
SetEvent(hStartEvent);
}
#endif
return TRUE;