mirror of
https://github.com/vale981/bspwm
synced 2025-03-05 18:01:37 -05:00
16 lines
454 B
C
16 lines
454 B
C
#ifndef _EVENTS_H
|
|
#define _EVENTS_H
|
|
|
|
#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 handle_state(node_t *, xcb_atom_t, unsigned int);
|
|
|
|
#endif
|