summaryrefslogtreecommitdiff
path: root/boot/efi/system_table.h
diff options
context:
space:
mode:
authorAda Christine <adachristine18@gmail.com>2026-05-26 21:32:27 +0000
committerAda Christine <adachristine18@gmail.com>2026-05-26 21:32:27 +0000
commita10aabfcd52f702057316018cd7847ab2bfe4aa1 (patch)
treecc4652d2b602798934e8a48b4939cfb20eda1989 /boot/efi/system_table.h
parent90c29fdde317c39384011a6ba97077c138f13ad6 (diff)
we're bringing kjarna back and not doing the crazy stuff with trying to have task management during efi. that was a bit extra.kjarna
Diffstat (limited to 'boot/efi/system_table.h')
-rw-r--r--boot/efi/system_table.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/boot/efi/system_table.h b/boot/efi/system_table.h
deleted file mode 100644
index 93e839d..0000000
--- a/boot/efi/system_table.h
+++ /dev/null
@@ -1,31 +0,0 @@
-#pragma once
-
-#include "table.h"
-
-extern "C"
-{
- struct efi_system_table
- {
- void *m_Value;
- };
-}
-
-namespace Efi
-{
- class SystemTable : private Table
- {
- char16_t *m_FirmwareVendor;
- uint32_t m_FirmwareRevision;
- Handle m_ConsoleInHandle;
- void *m_ConIn;
- Handle m_ConsoleOutHandle;
- void *m_ConOut;
- Handle m_StandardErrorHandle;
- void *m_StdErr;
- void *m_RuntimeServices;
- void *m_BootServices;
- size_t m_NumberOfTableEntries;
- void *m_ConfigurationTable;
- };
-}
-