summaryrefslogtreecommitdiff
path: root/test.q
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-11-01 23:46:08 -0400
committerIan Moffett <ian@osmora.org>2024-11-01 23:46:08 -0400
commita515dfb3b8f8e999362db7a6b52b3104c03b750a (patch)
treed0180f0cbc39d9c3e367af30791ad774e4d419ff /test.q
Import quark sources
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'test.q')
-rw-r--r--test.q13
1 files changed, 13 insertions, 0 deletions
diff --git a/test.q b/test.q
new file mode 100644
index 0000000..3af6676
--- /dev/null
+++ b/test.q
@@ -0,0 +1,13 @@
+type EfiStatus: uint32;
+type EfiHandle: any*;
+
+type TestEnum: enum {
+ nog,
+ bal
+};
+
+type TestStruct: struct {
+ EfiStatus status;
+ EfiHandle imageHandle;
+ any* systemTable;
+};