diff options
-rw-r--r-- | test.q | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -25,25 +25,25 @@ type EfiBootServices: struct { type EfiConfigurationTable: struct { EfiGuid vendorGuid; - any* vendorTable; + any *vendorTable; } type EfiSystemTable: struct { EfiTableHeader hdr; - any* firmwareVendor; + any *firmwareVendor; uint32 firmwareRevision; EfiHandle consoleInHandle; - any* conIn; + any *conIn; EfiHandle consoleOutHandle; - any* conOut; + any *conOut; EfiHandle standardErrorHandle; - any* stdErr; + any *stdErr; - EfiRuntimeServices* runtimeServices; - EfiBootServices* bootServices; + EfiRuntimeServices *runtimeServices; + EfiBootServices *bootServices; uint numberOfTableEntries; - EfiConfigurationTable* configurationTable; + EfiConfigurationTable *configurationTable; } |