]> git.sur5r.net Git - i3/i3/blobdiff - data.h
Add Makefile and queue.h to repository
[i3/i3] / data.h
diff --git a/data.h b/data.h
index 2e43a481064bbb62217f890496ba2f3fb9ebf079..55486973652b5bd1579df1269812400cc80830bb 100644 (file)
--- a/data.h
+++ b/data.h
@@ -42,3 +42,11 @@ typedef struct Client {
        /* The following entry provides the necessary list pointers to use Client with LIST_* macros */
        LIST_ENTRY(Client) clients;
 } Client;
+
+/*
+ * A container is either in default or stacking mode. It sits inside the table.
+ *
+ */
+typedef struct Container {
+       LIST_HEAD(client_head, Client) clients;
+} Container;