summaryrefslogtreecommitdiff
path: root/guispec.c
diff options
context:
space:
mode:
authorPeter Mikkelsen <petermikkelsen10@gmail.com>2024-02-11 00:04:31 +0000
committerPeter Mikkelsen <petermikkelsen10@gmail.com>2024-02-11 00:04:31 +0000
commit7c6a945996a1d5510ff1412320ac7d07a0f82851 (patch)
treef77259f26b5c33307ba8ebc670951ed0acce1b00 /guispec.c
parentb5a96b97ee2f3fd30e5935d2b3c2c6e0d96c4640 (diff)
Start working on it
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