not using CurrentTime anywhere
[mikachu/openbox.git] / openbox / event.h
1 #ifndef __events_h
2 #define __events_h
3
4 #include <X11/Xlib.h>
5
6 /*! Time at which the last event with a timestamp occured. */
7 extern Time event_lasttime;
8 /*! Time at which the last event with a timestamp occured before we tried to
9   unfocus a window. */
10 extern Time event_unfocustime;
11
12 /*! The value of the mask for the NumLock modifier */
13 extern unsigned int NumLockMask;
14 /*! The value of the mask for the ScrollLock modifier */
15 extern unsigned int ScrollLockMask;
16
17 void event_startup();
18 void event_shutdown();
19
20 void event_loop();
21
22 #endif