diff options
Diffstat (limited to 'test.q')
-rw-r--r-- | test.q | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -5,7 +5,7 @@ type EfiGuid: struct { uint32 data1; uint16 data2; uint16 data3; -}; +} type EfiTableHeader: struct { uint64 signature; @@ -13,20 +13,20 @@ type EfiTableHeader: struct { uint32 headerSize; uint32 crc32; uint32 reserved; -}; +} type EfiRuntimeServices: struct { EfiTableHeader hdr; -}; +} type EfiBootServices: struct { EfiTableHeader hdr; -}; +} type EfiConfigurationTable: struct { EfiGuid vendorGuid; any* vendorTable; -}; +} type EfiSystemTable: struct { EfiTableHeader hdr; @@ -46,4 +46,4 @@ type EfiSystemTable: struct { uint numberOfTableEntries; EfiConfigurationTable* configurationTable; -}; +} |