Mercurial > 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 wrap: on
line diff
--- a/dwm.h Mon Aug 14 08:52:15 2006 +0200 +++ b/dwm.h Mon Aug 14 10:18:24 2006 +0200 @@ -89,7 +89,6 @@ extern Client *getclient(Window w); extern Client *getctitle(Window w); extern void gravitate(Client *c, Bool invert); -extern void higher(Client *c); extern void killclient(Arg *arg); extern void manage(Window w, XWindowAttributes *wa); extern void resize(Client *c, Bool sizehints, Corner sticky); @@ -125,6 +124,7 @@ extern Client *getnext(Client *c); extern Client *getprev(Client *c); extern void replacetag(Arg *arg); +extern void restack(); extern void settags(Client *c); extern void togglemode(Arg *arg); extern void view(Arg *arg); @@ -133,4 +133,5 @@ /* util.c */ extern void *emallocz(unsigned int size); extern void eprint(const char *errstr, ...); +extern void *erealloc(void *ptr, unsigned int size); extern void spawn(Arg *arg);