Added AxBoot specific stuff

This commit is contained in:
Jozef Nagy 2025-01-25 20:40:27 +01:00
parent 00ed5f5d53
commit 693be19acd
Signed by untrusted user who does not match committer: crz
GPG key ID: 459A4811CEAC7068

View file

@ -2,9 +2,17 @@
#define EFI_EFILIB_H #define EFI_EFILIB_H
#include "efi.h" #include "efi.h"
#include "efi_st.h"
#define EFI_ERROR(status) (((EFI_INTN)(status)) < 0) #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 */ #endif /* EFI_EFILIB_H */