summaryrefslogtreecommitdiff
path: root/src/defs.h
diff options
context:
space:
mode:
authoruint23 <abhinav.prsai@gmail.com>2025-04-16 12:21:40 +0100
committeruint23 <abhinav.prsai@gmail.com>2025-04-16 12:21:40 +0100
commite59188201b7e6eeaba95b196a21ba2ec1a374923 (patch)
treec19dbd73f66727d849ff5dfd5dbf9078400ee737 /src/defs.h
parentdc3b91874677ebb2b0f6ec517b2dce661a92f2fe (diff)
added mask cleaning to accept all types of inputs
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