diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-01-29 09:55:05 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-01-29 09:55:44 +0100 |
| commit | 2529c8722d6d3491a3e19aa728f4bfce099bcc91 (patch) | |
| tree | 116a1cfb461884b33c6805bde6fcfe868ae5e491 /Private/EFIKit | |
| parent | 202db65935d71650600de9de59e4950ad047a122 (diff) | |
Kernel: Improve BootKit and EFIKit.
TODO: Add File Protocol support and Pool support for EFIKit.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'Private/EFIKit')
| -rw-r--r-- | Private/EFIKit/EFI.hxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Private/EFIKit/EFI.hxx b/Private/EFIKit/EFI.hxx index 2e7f4443..17f2da48 100644 --- a/Private/EFIKit/EFI.hxx +++ b/Private/EFIKit/EFI.hxx @@ -29,21 +29,21 @@ typedef UInt64 (*EfiTextString)(struct EfiSimpleTextOutputProtocol *self, const typedef struct EfiSimpleTextOutputProtocol { UInt64 reset; - EfiTextString output_string; - UInt64 test_string; - UInt64 query_mode; - UInt64 set_mode; - UInt64 set_attribute; - UInt64 clear_screen; - UInt64 set_cursor_position; - UInt64 enable_cursor; + EfiTextString outputString; + UInt64 testString; + UInt64 queryMode; + UInt64 setMode; + UInt64 setAttribute; + UInt64 clearScreen; + UInt64 setCursorPosition; + UInt64 enableCursor; UInt64 mode; } EfiSimpleTextOutputProtocol; typedef struct EfiSystemTable { EfiTableHeader hdr; - Int16 *firmwareVendor; + wchar_t *firmwareVendor; UInt32 firmwareRevision; VoidPtr consoleInHandle; UInt64 conIn; |
