X-Git-Url: https://git.xinqibao.xyz/dwm.git/blobdiff_plain/a73a88280681acdab047bd11a9ba77d97d6a0b72..95e8d12b7189d4cd01b8ae8ecebfa5835a1809e6:/dwm.h?ds=inline diff --git a/dwm.h b/dwm.h index f7bebb0..803fe9f 100644 --- a/dwm.h +++ b/dwm.h @@ -3,12 +3,13 @@ * See LICENSE file for license details. */ -#include #include CONFIG +#include /* mask shorthands, used in event.c and client.c */ -#define ButtonMask (ButtonPressMask | ButtonReleaseMask) -#define MouseMask (ButtonMask | PointerMotionMask) +#define BUTTONMASK (ButtonPressMask | ButtonReleaseMask) +#define MOUSEMASK (BUTTONMASK | PointerMotionMask) +#define PROTODELWIN 1 typedef union Arg Arg; typedef struct Client Client; @@ -56,8 +57,8 @@ struct Client { int tx, ty, tw, th; /* title */ int basew, baseh, incw, inch, maxw, maxh, minw, minh; int grav; - unsigned int border; long flags; + unsigned int border; Bool isfloat; Bool ismax; Client *next;