[BOOT] Huge refactor

This commit is contained in:
2024-10-05 15:39:04 -04:00
parent 6a678794d3
commit 7c3dafc051
18 changed files with 982 additions and 399 deletions

View File

@@ -13,11 +13,11 @@ Abstract:
--*/
#include "bootlib.h"
#include "bootmgr.h"
NTSTATUS
BmOpenDataStore (
IN OUT PHANDLE DataStore
IN OUT PHANDLE Handle
)
/*++
@@ -28,7 +28,7 @@ Routine Description:
Arguments:
DataStore - Pointer to a HANDLE that recieves the data store handle.
Handle - Pointer to a HANDLE that recieves the data store handle.
Return Value:
@@ -37,7 +37,7 @@ Return Value:
--*/
{
*DataStore = INVALID_HANDLE_VALUE;
*Handle = INVALID_HANDLE_VALUE;
/*
NTSTATUS Status;
@@ -51,5 +51,6 @@ Return Value:
return BmGetDataStorePath(&Device, &FilePath, &FilePathSet);
*/
return STATUS_SUCCESS;
}