summaryrefslogtreecommitdiff
path: root/src/defs.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/defs.h')
-rw-r--r--src/defs.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/defs.h b/src/defs.h
index a09ba13..2046bc3 100644
--- a/src/defs.h
+++ b/src/defs.h
@@ -31,13 +31,14 @@ typedef struct {
int is_func;
} Binding;
-typedef struct {
+typedef struct Client{
Window id;
int x, y;
unsigned int w, h;
unsigned int bw;
Bool isfocused;
Bool isfloating;
+ struct Client *next;
} Client;
#endif