[BOOT] Rename efistatus.c to efiinit.c

This commit is contained in:
2024-05-30 12:22:04 -04:00
parent 9f7a91a5a7
commit 472b48ffd6
7 changed files with 21 additions and 18 deletions

View File

@@ -18,17 +18,17 @@ Abstract:
#include <nt.h>
#define BOOT_APPLICATION_PARAMETERS_SIGNATURE 0x50504120544f4f42 /* "BOOT APP" */
#define BOOT_APPLICATION_PARAMETERS_VERSION 2
#define BOOT_INPUT_PARAMETERS_SIGNATURE 0x50504120544f4f42 /* "BOOT APP" */
#define BOOT_INPUT_PARAMETERS_VERSION 2
typedef struct {
ULONGLONG Signature;
ULONG Version;
} BOOT_APPLICATION_PARAMETERS, *PBOOT_APPLICATION_PARAMETERS;
} BOOT_INPUT_PARAMETERS, *PBOOT_INPUT_PARAMETERS;
NTSTATUS
BmMain (
IN PBOOT_APPLICATION_PARAMETERS Parameters
IN PBOOT_INPUT_PARAMETERS InputParameters
);
#endif

View File

@@ -20,7 +20,7 @@ Abstract:
#include "bootmgr.h"
#include "efi.h"
PBOOT_APPLICATION_PARAMETERS
PBOOT_INPUT_PARAMETERS
EfiInitCreateInputParameters (
IN EFI_HANDLE ImageHandle,
IN EFI_SYSTEM_TABLE *SystemTable