#pragma once #include void run(void); void scan(void); void buttonpress(XEvent *e); void keypress(XEvent *e); void maprequest(XEvent *e); void configurerequest(XEvent *e); void configurenotify(XEvent *e); void destroynotify(XEvent *e); void unmapnotify(XEvent *e); void clientmessage(XEvent *e); void propertynotify(XEvent *e); void resizerequest(XEvent *e); void mappingnotify(XEvent *e); void motionnotify(XEvent *e); void enternotify(XEvent *e); void focusin(XEvent *e); void expose(XEvent *e); extern void (*handler[LASTEvent])(XEvent *);