#ifndef _NTBCD_H
/**
* The BcdOpenStoreFromFile function 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_ PCUNICODE_STRING BcdFilePath,
_Out_ PHANDLE BcdStoreHandle
);
View code on GitHub
No description available.