2 * X events handling functions
4 * Copyright 1993 Alexandre Julliard
11 #include "debugtools.h"
13 DECLARE_DEBUG_CHANNEL(event
);
15 /***********************************************************************
18 * Synchronize with the X server. Should not be used too often.
20 void EVENT_Synchronize( void )
22 int iWndsLocks
= WIN_SuspendWndsLock();
23 USER_Driver
->pSynchronize();
24 WIN_RestoreWndsLock(iWndsLocks
);
27 /**********************************************************************
30 BOOL
EVENT_CheckFocus(void)
32 return USER_Driver
->pCheckFocus();