comparison wm.h @ 2:a79188fe4a40

added new stuff
author Anselm R. Garbe <garbeam@wmii.de>
date Mon, 10 Jul 2006 18:35:39 +0200
parents 491f34c11291
children e969f3575b7a
comparison
equal deleted inserted replaced
1:f10194d4b76d 2:a79188fe4a40
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 <X11/Xlib.h> 6 #include "draw.h"
7 #include "util.h"
8
7 #include <X11/Xutil.h> 9 #include <X11/Xutil.h>
8 10
9 /* WM atoms */ 11 /* WM atoms */
10 enum { WMState, WMProtocols, WMDelete, WMLast }; 12 enum { WMState, WMProtocols, WMDelete, WMLast };
11 13
52 extern Atom net_atom[NetLast]; 54 extern Atom net_atom[NetLast];
53 extern Cursor cursor[CurLast]; 55 extern Cursor cursor[CurLast];
54 extern Pixmap pmap; 56 extern Pixmap pmap;
55 57
56 /* wm.c */ 58 /* wm.c */
57 extern void error(char *errstr, ...);