diff options
author | Peter Mikkelsen <petermikkelsen10@gmail.com> | 2024-02-11 00:04:31 +0000 |
---|---|---|
committer | Peter Mikkelsen <petermikkelsen10@gmail.com> | 2024-02-11 00:04:31 +0000 |
commit | 7c6a945996a1d5510ff1412320ac7d07a0f82851 (patch) | |
tree | f77259f26b5c33307ba8ebc670951ed0acce1b00 /guispec.c | |
parent | b5a96b97ee2f3fd30e5935d2b3c2c6e0d96c4640 (diff) |
Start working on it
Diffstat (limited to 'guispec.c')
-rw-r--r-- | guispec.c | 10 |
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 |