]> git.lizzy.rs Git - bspwm.git/blobdiff - events.h
Always use BUFSIZ
[bspwm.git] / events.h
index 0d93666b42e7df9d56cce55097f8f093d26a62bc..dd2787669fa930b9e5c6ef526e8dd446292e08dc 100644 (file)
--- a/events.h
+++ b/events.h
@@ -1,6 +1,19 @@
 #ifndef _EVENTS_H
 #define _EVENTS_H
 
-void handle_event(xcb_generic_event_t*);
+#include <xcb/xcb.h>
+#include <xcb/xcb_event.h>
+
+void handle_event(xcb_generic_event_t *);
+void map_request(xcb_generic_event_t *);
+void destroy_notify(xcb_generic_event_t *);
+void unmap_notify(xcb_generic_event_t *);
+void configure_request(xcb_generic_event_t *);
+void client_message(xcb_generic_event_t *);
+void property_notify(xcb_generic_event_t *);
+void button_press(xcb_generic_event_t *);
+void motion_notify(xcb_generic_event_t *);
+void button_release(xcb_generic_event_t *);
+void handle_state(node_t *, xcb_atom_t, unsigned int);
 
 #endif