diff -r 466591c2f967 -r 148f25ed0ad7 dwm.h --- a/dwm.h Thu Jul 13 17:09:35 2006 +0200 +++ b/dwm.h Thu Jul 13 18:21:38 2006 +0200 @@ -68,7 +68,7 @@ Window trans; Window title; Client *next; - Client *prev; + Client *revert; }; struct Key { @@ -89,7 +89,7 @@ extern char stext[1024], *tags[TLast]; extern DC dc; -extern Client *cstart, *cend, *csel; +extern Client *clients, *sel; /* client.c */ extern void manage(Window w, XWindowAttributes *wa); @@ -109,7 +109,9 @@ extern void max(Arg *arg); extern void floating(Arg *arg); extern void tiling(Arg *arg); -void tag(Arg *arg); +extern void tag(Arg *arg); +extern void view(Arg *arg); +extern void zoom(Arg *arg); extern void gravitate(Client *c, Bool invert); /* draw.c */