Mercurial > dwm-meillo
comparison dwm.h @ 533:a5567a0d3011 1.9
do* has no Arg arument anymore (never called directly)
author | Anselm R. Garbe <arg@10kloc.org> |
---|---|
date | Fri, 06 Oct 2006 13:06:37 +0200 |
parents | 651f2c868b31 |
children | 00ccae001069 |
comparison
equal
deleted
inserted
replaced
532:651f2c868b31 | 533:a5567a0d3011 |
---|---|
97 extern char stext[1024]; /* status text */ | 97 extern char stext[1024]; /* status text */ |
98 extern int bx, by, bw, bh, bmw; /* bar geometry, bar mode label width */ | 98 extern int bx, by, bw, bh, bmw; /* bar geometry, bar mode label width */ |
99 extern int screen, sx, sy, sw, sh; /* screen geometry */ | 99 extern int screen, sx, sy, sw, sh; /* screen geometry */ |
100 extern unsigned int master, ntags, numlockmask; /* master percent, number of tags, dynamic lock mask */ | 100 extern unsigned int master, ntags, numlockmask; /* master percent, number of tags, dynamic lock mask */ |
101 extern void (*handler[LASTEvent])(XEvent *); /* event handler */ | 101 extern void (*handler[LASTEvent])(XEvent *); /* event handler */ |
102 extern void (*arrange)(Arg *); /* arrange function, indicates mode */ | 102 extern void (*arrange)(void); /* arrange function, indicates mode */ |
103 extern Atom wmatom[WMLast], netatom[NetLast]; | 103 extern Atom wmatom[WMLast], netatom[NetLast]; |
104 extern Bool running, issel, *seltag; /* seltag is array of Bool */ | 104 extern Bool running, issel, *seltag; /* seltag is array of Bool */ |
105 extern Client *clients, *sel, *stack; /* global client list and stack */ | 105 extern Client *clients, *sel, *stack; /* global client list and stack */ |
106 extern Cursor cursor[CurLast]; | 106 extern Cursor cursor[CurLast]; |
107 extern DC dc; /* global draw context */ | 107 extern DC dc; /* global draw context */ |
155 extern void *erealloc(void *ptr, unsigned int size); /* reallocates memory, exits on error */ | 155 extern void *erealloc(void *ptr, unsigned int size); /* reallocates memory, exits on error */ |
156 extern void spawn(Arg *arg); /* forks a new subprocess with to arg's cmd */ | 156 extern void spawn(Arg *arg); /* forks a new subprocess with to arg's cmd */ |
157 | 157 |
158 /* view.c */ | 158 /* view.c */ |
159 extern void detach(Client *c); /* detaches c from global client list */ | 159 extern void detach(Client *c); /* detaches c from global client list */ |
160 extern void dofloat(Arg *arg); /* arranges all windows floating, arg is ignored */ | 160 extern void dofloat(void); /* arranges all windows floating */ |
161 extern void dotile(Arg *arg); /* arranges all windows, arg is ignored */ | 161 extern void dotile(void); /* arranges all windows tiled */ |
162 extern void focusnext(Arg *arg); /* focuses next visible client, arg is ignored */ | 162 extern void focusnext(Arg *arg); /* focuses next visible client, arg is ignored */ |
163 extern void focusprev(Arg *arg); /* focuses previous visible client, arg is ignored */ | 163 extern void focusprev(Arg *arg); /* focuses previous visible client, arg is ignored */ |
164 extern Bool isvisible(Client *c); /* returns True if client is visible */ | 164 extern Bool isvisible(Client *c); /* returns True if client is visible */ |
165 extern void resizecol(Arg *arg); /* resizes the master percent with arg's index value */ | 165 extern void resizecol(Arg *arg); /* resizes the master percent with arg's index value */ |
166 extern void restack(void); /* restores z layers of all clients */ | 166 extern void restack(void); /* restores z layers of all clients */ |