summaryrefslogtreecommitdiff
path: root/test.q
blob: 3af66767183df6877cccc4a7898a3164691de3d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
type EfiStatus: uint32;
type EfiHandle: any*;

type TestEnum: enum {
    nog,
    bal
};

type TestStruct: struct {
    EfiStatus status;
    EfiHandle imageHandle;
    any* systemTable;
};