summaryrefslogtreecommitdiff
path: root/boot/efi/handle.h
diff options
context:
space:
mode:
Diffstat (limited to 'boot/efi/handle.h')
-rw-r--r--boot/efi/handle.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/boot/efi/handle.h b/boot/efi/handle.h
new file mode 100644
index 0000000..1381a30
--- /dev/null
+++ b/boot/efi/handle.h
@@ -0,0 +1,19 @@
+#pragma once
+
+extern "C"
+{
+ struct efi_handle
+ {
+ void *m_Value;
+ };
+}
+
+namespace Efi
+{
+ class Handle : private efi_handle
+ {
+ public:
+ Handle(efi_handle &);
+ };
+}
+