From b35575574be53a1b3be42d7037d2f432a19a3890 Mon Sep 17 00:00:00 2001 From: "arg@10ksloc.org" Date: Thu, 3 Aug 2006 12:12:26 +0200 Subject: removed TLast tag enum, now tags is simple defined as char *[] array, the rest is calculated correctly, rules take an int array for the tags --- dwm.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'dwm.h') diff --git a/dwm.h b/dwm.h index c44da29..25971ac 100644 --- a/dwm.h +++ b/dwm.h @@ -60,16 +60,17 @@ struct Client { unsigned int border; Bool isfloat; Bool ismax; - Bool tags[TLast]; + Bool *tags; Client *next; Client *prev; Window win; Window title; }; -extern const char *tags[TLast]; +extern const char *tags[]; extern char stext[1024]; extern int tsel, screen, sx, sy, sw, sh, bx, by, bw, bh, mw; +extern unsigned int ntags; extern void (*handler[LASTEvent])(XEvent *); extern void (*arrange)(Arg *); extern Atom wmatom[WMLast], netatom[NetLast]; -- cgit v1.2.3