Fixed get_event_obj/get_file_obj to use the process parameter (thanks
[wine.git] / windows / event.c
blob52d6ab5b8f44c367a21b2c1c9150cddaa19be726
1 /*
2 * X events handling functions
3 *
4 * Copyright 1993 Alexandre Julliard
5 *
6 */
8 #include "message.h"
9 #include "debugtools.h"
11 DECLARE_DEBUG_CHANNEL(event)
13 /**********************************************************************/
15 EVENT_DRIVER *EVENT_Driver = NULL;
17 /***********************************************************************
18 * EVENT_Init
20 * Initialize input event handling
22 BOOL EVENT_Init(void)
24 return EVENT_Driver->pInit();
27 /***********************************************************************
28 * EVENT_Synchronize
30 * Synchronize with the X server. Should not be used too often.
32 void EVENT_Synchronize( void )
34 int iWndsLocks = WIN_SuspendWndsLock();
35 EVENT_Driver->pSynchronize();
36 WIN_RestoreWndsLock(iWndsLocks);
39 /**********************************************************************
40 * EVENT_CheckFocus
42 BOOL EVENT_CheckFocus(void)
44 return EVENT_Driver->pCheckFocus();