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