[BOOT:LIB] Declare global variables in bootlib.h

This commit is contained in:
2024-10-06 08:04:40 -04:00
parent 67ab5dc5d4
commit 620ede5862
4 changed files with 34 additions and 9 deletions

View File

@@ -17,9 +17,6 @@ Abstract:
#include <wchar.h>
#include "bootlib.h"
extern PEXECUTION_CONTEXT CurrentExecutionContext;
extern SIMPLE_TEXT_OUTPUT_INTERFACE *EfiConOut;
VOID
ConsolePrint (
IN PWSTR String

View File

@@ -23,9 +23,6 @@ Abstract:
#define EFI_PAGE(NtPage) (((NtPage) << PAGE_SHIFT) >> EFI_PAGE_SHIFT)
#define NT_PAGE(EfiPage) (((EfiPage) << EFI_PAGE_SHIFT) >> PAGE_SHIFT)
extern EFI_BOOT_SERVICES *EfiBS;
extern PBOOT_DEVICE BlpBootDevice;
NTSTATUS
EfiGetMemoryMap (
IN OUT UINTN *MemoryMapSize,