diff options
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 |