Add Makefile and queue.h to repository

This commit is contained in:
Michael Stapelberg
2009-02-07 04:27:22 +01:00
parent efb8c11b7f
commit 1e70aa2e89
3 changed files with 537 additions and 0 deletions

8
data.h
View File

@ -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;