aboutsummaryrefslogtreecommitdiffstats
path: root/dwm.h
diff options
context:
space:
mode:
authorAnselm R. Garbe <garbeam@gmail.com>2007-10-11 20:47:34 +0200
committerAnselm R. Garbe <garbeam@gmail.com>2007-10-11 20:47:34 +0200
commit0453c1d180ca868a740bcc032d2dac1f120f6c7e (patch)
treea7a1cff6276dfde5fa411de70d7047f190b66967 /dwm.h
parent0b5c14cf593c82b85570c45beac553dfce2f9689 (diff)
downloaddwm-0453c1d180ca868a740bcc032d2dac1f120f6c7e.tar.zst
recreated dwm.h
Diffstat (limited to 'dwm.h')
-rw-r--r--dwm.h20
1 files changed, 20 insertions, 0 deletions
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 <X11/Xlib.h>
+
+/* 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;
+};