[BOOT] Add EFI headers and entry point

This commit is contained in:
2024-05-22 19:56:17 -04:00
父節點 88449693d4
當前提交 8e7c2d02bb
共有 15 個文件被更改,包括 1395 次插入0 次删除

查看文件

@@ -0,0 +1,44 @@
/*++
Copyright (c) 2024, the LibreXP developers.
Provided under the BSD 3-Clause license.
Module Name:
bootmgr.c
Abstract:
Main functions of the boot manager.
--*/
#include "bootmgr.h"
NTSTATUS
BmMain (
IN PBOOT_APPLICATION_PARAMETERS Parameters
)
/*++
Routine Description:
Firmware-independent boot manager entry point.
Arguments:
Parameters - Input parameters for the boot manager.
Return Value:
Error code on failure.
Does not return on success, as control is transferred to the OS loader.
--*/
{
/* TODO: Implement BmMain() */
return STATUS_SUCCESS;
}