comparison dwm.h @ 166:e0535db04dfe

removed the CONFIG variable from config.mk, renamed config.h into config.default.h, after first clone/extract one needs to copy config.default.h to config.h, that is easier than always heavy typing make CONFIG=blafasel
author arg@10ksloc.org
date Wed, 02 Aug 2006 16:46:59 +0200
parents 21071ae1fe68
children 1db04019684e
comparison
equal deleted inserted replaced
165:4d828b431b72 166:e0535db04dfe
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 6 #include "config.h"
7 #include <X11/Xlib.h> 7 #include <X11/Xlib.h>
8 8
9 /* mask shorthands, used in event.c and client.c */ 9 /* mask shorthands, used in event.c and client.c */
10 #define BUTTONMASK (ButtonPressMask | ButtonReleaseMask) 10 #define BUTTONMASK (ButtonPressMask | ButtonReleaseMask)
11 #define MOUSEMASK (BUTTONMASK | PointerMotionMask) 11 #define MOUSEMASK (BUTTONMASK | PointerMotionMask)