all repos — openbox @ 1ae0583b045ead56dfa7002ee83378fed64c920b

openbox fork - make it a bit more like ryudo

openbox/event.h (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef __events_h
#define __events_h

#include <X11/Xlib.h>

/*! Time at which the last event with a timestamp occured. */
extern Time event_lasttime;

/*! The value of the mask for the NumLock modifier */
extern guint NumLockMask;
/*! The value of the mask for the ScrollLock modifier */
extern guint ScrollLockMask;

void event_startup(gboolean reconfig);
void event_shutdown(gboolean reconfig);

#endif