From 693be19acd46bb022d274f2c971b6a78930c475a Mon Sep 17 00:00:00 2001 From: Jozef Nagy Date: Sat, 25 Jan 2025 20:40:27 +0100 Subject: [PATCH] Added AxBoot specific stuff --- efilib.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/efilib.h b/efilib.h index 5e79899..7f92d52 100644 --- a/efilib.h +++ b/efilib.h @@ -2,9 +2,17 @@ #define EFI_EFILIB_H #include "efi.h" -#include "efi_st.h" #define EFI_ERROR(status) (((EFI_INTN)(status)) < 0) +/* AxBoot-specific stuff */ +#ifdef AXBOOT_UEFI + +extern EFI_HANDLE gImageHandle; +extern EFI_SYSTEM_TABLE *gSystemTable; +extern EFI_BOOT_SERVICES *gBootServices; + +#endif + #endif /* EFI_EFILIB_H */