| * X events handling functions |
| * Copyright 1993 Alexandre Julliard |
| DECLARE_DEBUG_CHANNEL(event) |
| /**********************************************************************/ |
| EVENT_DRIVER *EVENT_Driver = NULL; |
| /*********************************************************************** |
| * Initialize input event handling |
| return EVENT_Driver->pInit(); |
| /*********************************************************************** |
| * Synchronize with the X server. Should not be used too often. |
| void EVENT_Synchronize( void ) |
| int iWndsLocks = WIN_SuspendWndsLock(); |
| EVENT_Driver->pSynchronize(); |
| WIN_RestoreWndsLock(iWndsLocks); |
| /********************************************************************** |
| BOOL EVENT_CheckFocus(void) |
| return EVENT_Driver->pCheckFocus(); |