Mercurial > aewl
comparison dwm.h @ 745:08b89915c109
added jukka's viewnext code
author | meillo@marmaro.de |
---|---|
date | Sun, 11 Feb 2007 11:59:23 +0100 |
parents | 6283adb1fcf2 |
children | 6692d7e7e156 |
comparison
equal
deleted
inserted
replaced
744:628c5bac7f3b | 745:08b89915c109 |
---|---|
130 extern Client *getnext(Client *c); /* returns next visible client */ | 130 extern Client *getnext(Client *c); /* returns next visible client */ |
131 extern Client *getprev(Client *c); /* returns previous visible client */ | 131 extern Client *getprev(Client *c); /* returns previous visible client */ |
132 extern void settags(Client *c, Client *trans); /* sets tags of c */ | 132 extern void settags(Client *c, Client *trans); /* sets tags of c */ |
133 extern void tag(Arg *arg); /* tags c with arg's index */ | 133 extern void tag(Arg *arg); /* tags c with arg's index */ |
134 extern void toggletag(Arg *arg); /* toggles c tags with arg's index */ | 134 extern void toggletag(Arg *arg); /* toggles c tags with arg's index */ |
135 extern void viewnext(Arg *arg); /* view next tag(s) [code by jukka] */ | |
135 | 136 |
136 /* util.c */ | 137 /* util.c */ |
137 extern void *emallocz(unsigned int size); /* allocates zero-initialized memory, exits on error */ | 138 extern void *emallocz(unsigned int size); /* allocates zero-initialized memory, exits on error */ |
138 extern void eprint(const char *errstr, ...); /* prints errstr and exits with 1 */ | 139 extern void eprint(const char *errstr, ...); /* prints errstr and exits with 1 */ |
139 extern void spawn(Arg *arg); /* forks a new subprocess with to arg's cmd */ | 140 extern void spawn(Arg *arg); /* forks a new subprocess with to arg's cmd */ |