summaryrefslogtreecommitdiff
path: root/boot/efi/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/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/table.h')
-rw-r--r--boot/efi/table.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/boot/efi/table.h b/boot/efi/table.h
deleted file mode 100644
index 660bd1e..0000000
--- a/boot/efi/table.h
+++ /dev/null
@@ -1,26 +0,0 @@
-#pragma once
-
-#include <cstddef>
-#include <cstdint>
-
-namespace Efi
-{
- class TableHeader
- {
- using uint64_t = std::uint64_t;
- using uint32_t = std::uint32_t;
- using size_t = std::size_t;
-
- uint64_t m_Signature;
- uint32_t m_Revision;
- uint32_t m_HeaderSize;
- uint32_t m_Crc32;
- uint32_t m_Reserved;
- };
-
- class Table
- {
- TableHeader m_Header;
- };
-}
-