diff options
| author | uint23 <abhinav.prsai@gmail.com> | 2025-04-16 12:21:40 +0100 |
|---|---|---|
| committer | uint23 <abhinav.prsai@gmail.com> | 2025-04-16 12:21:40 +0100 |
| commit | e59188201b7e6eeaba95b196a21ba2ec1a374923 (patch) | |
| tree | c19dbd73f66727d849ff5dfd5dbf9078400ee737 /src/defs.h | |
| parent | dc3b91874677ebb2b0f6ec517b2dce661a92f2fe (diff) | |
added mask cleaning to accept all types of inputs
Diffstat (limited to 'src/defs.h')
| -rw-r--r-- | src/defs.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |
