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