1 /*
2  * $Source: /cvs/cvsroot/d2x/arch/include/event.h,v $
3  * $Revision: 1.1 $
4  * $Author: bradleyb $
5  * $Date: 2001/01/28 16:10:57 $
6  *
7  * Event header file
8  *
9  * $Log: event.h,v $
10  * Revision 1.1  2001/01/28 16:10:57  bradleyb
11  * unified input headers.
12  *
13  *
14  */
15 
16 #ifndef _EVENT_H
17 #define _EVENT_H
18 
19 #ifdef GII_XWIN
20 #include <ggi/input/xwin.h>
21 #endif
22 
23 int event_init();
24 void event_poll();
25 
26 #ifdef GII_XWIN
27 void init_gii_xwin(Display *disp,Window win);
28 #endif
29 
30 #endif
31