Suspend WND lock before EVENT_Synchronize.

This commit is contained in:
Ulrich Weigand 1999-07-31 17:26:11 +00:00 committed by Alexandre Julliard
parent 40b083f0e4
commit 56237566e4
1 changed files with 2 additions and 0 deletions

View File

@ -31,7 +31,9 @@ BOOL EVENT_Init(void)
*/
void EVENT_Synchronize( void )
{
int iWndsLocks = WIN_SuspendWndsLock();
EVENT_Driver->pSynchronize();
WIN_RestoreWndsLock(iWndsLocks);
}
/**********************************************************************