[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

@@ -44,7 +44,7 @@ Return Value:
--*/
{
PBOOT_APPLICATION_PARAMETERS InputParameters;
PBOOT_INPUT_PARAMETERS InputParameters;
//
// Create firmware-independent input structure from EFI parameters.

View File

@@ -17,7 +17,7 @@ Abstract:
NTSTATUS
BmMain (
IN PBOOT_APPLICATION_PARAMETERS Parameters
IN PBOOT_INPUT_PARAMETERS InputParameters
)
/*++
@@ -28,7 +28,7 @@ Routine Description:
Arguments:
Parameters - Input parameters for the boot manager.
InputParameters - Input parameters for the boot manager.
Return Value:
@@ -38,9 +38,9 @@ Return Value:
--*/
{
(VOID)Parameters;
(VOID)InputParameters;
/* Not implemented */
/* TODO: Implement this */
return STATUS_SUCCESS;
}