From 0453c1d180ca868a740bcc032d2dac1f120f6c7e Mon Sep 17 00:00:00 2001 From: "Anselm R. Garbe" Date: Thu, 11 Oct 2007 20:47:34 +0200 Subject: recreated dwm.h --- dwm.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 dwm.h (limited to 'dwm.h') diff --git a/dwm.h b/dwm.h new file mode 100644 index 0000000..10834f5 --- /dev/null +++ b/dwm.h @@ -0,0 +1,20 @@ +/* See LICENSE file for copyright and license details. */ +#include + +/* typedefs */ +typedef struct Client Client; +struct Client { + char name[256]; + int x, y, w, h; + int rx, ry, rw, rh; /* revert geometry */ + int basew, baseh, incw, inch, maxw, maxh, minw, minh; + int minax, maxax, minay, maxay; + long flags; + unsigned int border, oldborder; + Bool isbanned, isfixed, ismax, isfloating, wasfloating; + Bool *tags; + Client *next; + Client *prev; + Client *snext; + Window win; +}; -- cgit v1.2.3