i3
debug.h
Go to the documentation of this file.
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  * debug.c: Debugging functions, especially FormatEvent, which prints unhandled
8  * events. This code is from xcb-util.
9  *
10  */
11 #ifndef I3_DEBUG_H
12 #define I3_DEBUG_H
13 
14 int handle_event(void *ignored, xcb_connection_t *c, xcb_generic_event_t *e);
15 
16 #endif
void handle_event(int type, xcb_generic_event_t *event)
Takes an xcb_generic_event_t and calls the appropriate handler, based on the event type...
Definition: handlers.c:1066