XTLDR Rewrite #7

Merged
belliash merged 184 commits from xtldr_rewrite into master 2024-01-09 18:51:04 +01:00
Showing only changes of commit 5e4248351e - Show all commits

View File

@ -15,6 +15,16 @@
/* XTLDR routine callbacks */
typedef VOID (BMPRINTCHAR)(IN USHORT Character);
XTCDECL
EFI_STATUS
BmAllocateEfiPages(IN UINT64 Pages,
OUT PEFI_PHYSICAL_ADDRESS Memory);
XTCDECL
EFI_STATUS
BmAllocateEfiPool(IN UINT_PTR Size,
OUT PVOID *Memory);
/* XTLDR routines forward references */
XTCDECL
VOID
@ -28,6 +38,16 @@ XTCDECL
VOID
BmEnableCursor();
XTCDECL
EFI_STATUS
BmFreeEfiPages(IN UINT64 Pages,
IN EFI_PHYSICAL_ADDRESS Memory);
XTCDECL
EFI_STATUS
BmFreeEfiPool(IN PVOID Memory);
XTCDECL
VOID
BmInitializeConsole();