#ifndef X_FUNCTIONS_H
#define X_FUNCTIONS_H
#include <X11/Xlib.h>

void on_unmap_request(const XUnmapEvent *event);
void on_map_request(const XMapRequestEvent *event);
void on_configure_request(const XConfigureRequestEvent *event);
void on_create_notify(const XCreateWindowEvent *event);
void on_destroy_notify();

#endif