Adding IsQueueOnCurrentThread().

git-svn-id: svn://10.0.0.236/trunk@35163 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
dougt%netscape.com
1999-06-14 20:20:33 +00:00
parent 9a352b81fd
commit 5fa77fef77
3 changed files with 11 additions and 0 deletions

View File

@@ -104,6 +104,13 @@ nsEventQueueImpl::GetPLEventQueue(PLEventQueue** aEventQueue)
return NS_OK;
}
NS_IMETHODIMP
nsEventQueueImpl::IsQueueOnCurrentThread(PRBool *aResult)
{
*aResult = PL_IsQueueOnCurrentThread( mEventQueue );
return NS_OK;
}
NS_IMETHODIMP
nsEventQueueImpl::ProcessPendingEvents()