On windows call PL_InitializeEventsLib(...) until the new PL_event apis are available...

git-svn-id: svn://10.0.0.236/trunk@17157 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rpotts%netscape.com
1999-01-05 09:44:28 +00:00
parent d4874da99e
commit f0d7f6fddb
2 changed files with 10 additions and 0 deletions

View File

@@ -110,6 +110,11 @@ nsEventQueueServiceImpl::CreateThreadEventQueue(void)
}
evQueue = PL_CreateEventQueue("Thread event queue...", PR_GetCurrentThread());
#ifdef XP_PC
// XXX: For now only use the main eventQ... When the event queue is
// created via PL_CreateNativeEventQueue(...) this can go away...
PL_InitializeEventsLib("");
#endif
if (NULL == evQueue) {
rv = NS_ERROR_OUT_OF_MEMORY;
goto done;