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