diff options
Diffstat (limited to 'test.q')
-rw-r--r-- | test.q | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -0,0 +1,13 @@ +type EfiStatus: uint32; +type EfiHandle: any*; + +type TestEnum: enum { + nog, + bal +}; + +type TestStruct: struct { + EfiStatus status; + EfiHandle imageHandle; + any* systemTable; +}; |