From d855c0a219a180497c2e50f9bc19bfce69b937a6 Mon Sep 17 00:00:00 2001 From: Ada Christine Date: Thu, 23 Jan 2025 00:24:57 +0000 Subject: it printfs with the efi interface --- boot/efi/handle.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 boot/efi/handle.h (limited to 'boot/efi/handle.h') 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 &); + }; +} + -- cgit v1.3.1-1-g115d