summaryrefslogtreecommitdiff
path: root/guispec.c
diff options
context:
space:
mode:
Diffstat (limited to 'guispec.c')
-rw-r--r--guispec.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/guispec.c b/guispec.c
new file mode 100644
index 0000000..ddd0cd5
--- /dev/null
+++ b/guispec.c
@@ -0,0 +1,10 @@
+#include <u.h>
+#include <libc.h>
+#include <draw.h>
+
+#include "guifs.h"
+
+GuiSpec guispecs[Gmax] = {
+ [Gnone] = { "none", drawnone, layoutnone, 1, {Pbackground}},
+ [Gcontainer] = { "container", drawcontainer, layoutcontainer, 1, {Pbackground}},
+}; \ No newline at end of file