[BOOT:BOOTMGR] Begin work on BCD support

Added stub for BmOpenDataStore()
This commit is contained in:
2024-08-25 10:43:48 -04:00
parent b8afb1aad4
commit e61d0f5155
3 changed files with 67 additions and 0 deletions

View File

@@ -41,6 +41,7 @@ Return Value:
{
NTSTATUS Status;
BOOT_LIBRARY_PARAMETERS LibraryParameters;
HANDLE DataStore;
LibraryParameters.Flags = 0;
@@ -53,6 +54,11 @@ Return Value:
goto Exit;
}
//
// Open the boot data store.
//
(VOID)BmOpenDataStore(&DataStore);
Exit:
BlDestroyLibrary();
return Status;