/* aewm - a minimalistic X11 window manager. ------- vim:sw=4:et * Copyright (c) 1998-2001 Decklin Foster * Free software! Please see README for details and license. */ #include #include #include #include typedef struct _Client Client; struct _Client { Client *next; Window window; }; extern Display *dpy; /* events.c */ extern void do_event_loop(void); /* client.c */ extern Client *find_client(Window); extern void set_focus_on(Window w); extern void set_wm_state(Client *, int); extern void remove_client(Client *); extern void make_new_client(Window); /* misc.c */ void err(const char *, ...); int handle_xerror(Display *, XErrorEvent *); #define wm_state XInternAtom(dpy, "WM_STATE", False)