#ifndef _NTBCD_H
/**
* Opens a BCD store from a file.
*
* @param BcdFilePath The file path of the BCD store.
* @param BcdStoreHandle The handle to receive the BCD store.
* @return NTSTATUS Successful or errant status.
*/
NTSYSAPI
NTSTATUS
NTAPI
BcdOpenStoreFromFile(
_In_ UNICODE_STRING BcdFilePath,
_Out_ PHANDLE BcdStoreHandle
);
View code on GitHub
No description available.