void unmap_notify(xcb_generic_event_t *evt) { xcb_unmap_notify_event_t *e = (xcb_unmap_notify_event_t *) evt; PRINTF("unmap notify %X\n", e->window); unmanage_window(e->window); }
void destroy_notify(xcb_generic_event_t *evt) { xcb_destroy_notify_event_t *e = (xcb_destroy_notify_event_t *) evt; PRINTF("destroy notify %X\n", e->window); unmanage_window(e->window); }
void unmap_notify(xcb_generic_event_t *evt) { xcb_unmap_notify_event_t *e = (xcb_unmap_notify_event_t *) evt; unmanage_window(e->window); }
void destroy_notify(xcb_generic_event_t *evt) { xcb_destroy_notify_event_t *e = (xcb_destroy_notify_event_t *) evt; unmanage_window(e->window); }