aewl
diff dwm.h @ 270:dacd3f3c5823
implemented restack behavior (floats are on top in tiled mode)
author | Anselm R.Garbe <arg@10ksloc.org> |
---|---|
date | Mon, 14 Aug 2006 10:18:24 +0200 |
parents | 8a8ea74e1b87 |
children | e9dc5a9f9480 |
line diff
1.1 --- a/dwm.h Mon Aug 14 08:52:15 2006 +0200 1.2 +++ b/dwm.h Mon Aug 14 10:18:24 2006 +0200 1.3 @@ -89,7 +89,6 @@ 1.4 extern Client *getclient(Window w); 1.5 extern Client *getctitle(Window w); 1.6 extern void gravitate(Client *c, Bool invert); 1.7 -extern void higher(Client *c); 1.8 extern void killclient(Arg *arg); 1.9 extern void manage(Window w, XWindowAttributes *wa); 1.10 extern void resize(Client *c, Bool sizehints, Corner sticky); 1.11 @@ -125,6 +124,7 @@ 1.12 extern Client *getnext(Client *c); 1.13 extern Client *getprev(Client *c); 1.14 extern void replacetag(Arg *arg); 1.15 +extern void restack(); 1.16 extern void settags(Client *c); 1.17 extern void togglemode(Arg *arg); 1.18 extern void view(Arg *arg); 1.19 @@ -133,4 +133,5 @@ 1.20 /* util.c */ 1.21 extern void *emallocz(unsigned int size); 1.22 extern void eprint(const char *errstr, ...); 1.23 +extern void *erealloc(void *ptr, unsigned int size); 1.24 extern void spawn(Arg *arg);