# HG changeset patch # User Anselm R. Garbe # Date 1172127724 -3600 # Node ID 6fa419036c2e10ec53cc9fc40ebdc40c19042881 # Parent 0ed770c96e5140a13289819c3e42417fa839ffea fixing missing extern declars in dwm.h for {de,at}tach() diff -r 0ed770c96e51 -r 6fa419036c2e dwm.h --- a/dwm.h Thu Feb 22 07:59:13 2007 +0100 +++ b/dwm.h Thu Feb 22 08:02:04 2007 +0100 @@ -102,7 +102,9 @@ extern Window root, barwin; /* client.c */ +extern void attach(Client *c); /* attaches c to global client list */ extern void configure(Client *c); /* send synthetic configure event */ +extern void detach(Client *c); /* detaches c from global client list */ extern void focus(Client *c); /* focus c, c may be NULL */ extern void killclient(Arg arg); /* kill c nicely */ extern void manage(Window w, XWindowAttributes *wa); /* manage new client */