Mercurial > dwm-meillo
comparison wm.h @ 3:e969f3575b7a
several new changes, made gridmenu working
author | Anselm R. Garbe <garbeam@wmii.de> |
---|---|
date | Mon, 10 Jul 2006 19:46:24 +0200 |
parents | a79188fe4a40 |
children | e5018cae273f |
comparison
equal
deleted
inserted
replaced
2:a79188fe4a40 | 3:e969f3575b7a |
---|---|
1 /* | 1 /* |
2 * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com> | 2 * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com> |
3 * See LICENSE file for license details. | 3 * See LICENSE file for license details. |
4 */ | 4 */ |
5 | 5 |
6 #include "config.h" | |
6 #include "draw.h" | 7 #include "draw.h" |
7 #include "util.h" | 8 #include "util.h" |
8 | 9 |
9 #include <X11/Xutil.h> | 10 #include <X11/Xutil.h> |
10 | 11 |
46 }; | 47 }; |
47 | 48 |
48 extern Display *dpy; | 49 extern Display *dpy; |
49 extern Window root; | 50 extern Window root; |
50 extern XRectangle rect; | 51 extern XRectangle rect; |
51 extern int screen, sel_screen; | |
52 extern unsigned int kmask, numlock_mask; | |
53 extern Atom wm_atom[WMLast]; | 52 extern Atom wm_atom[WMLast]; |
54 extern Atom net_atom[NetLast]; | 53 extern Atom net_atom[NetLast]; |
55 extern Cursor cursor[CurLast]; | 54 extern Cursor cursor[CurLast]; |
56 extern Pixmap pmap; | 55 extern Pixmap pmap; |
57 | 56 |
57 extern int screen, sel_screen; | |
58 extern unsigned int kmask, numlock_mask; | |
59 | |
60 extern Brush brush; | |
61 | |
58 /* wm.c */ | 62 /* wm.c */ |