#ifndef _NTBCD_H
/**
* Imports a BCD store from a file with additional flags.
*
* @param BcdFilePath The file path to import the BCD store.
* @param BcdImportFlags The flags for importing the store.
* @return NTSTATUS Successful or errant status.
*/
NTSYSAPI
NTSTATUS
NTAPI
BcdImportStoreWithFlags(
_In_ UNICODE_STRING BcdFilePath,
_In_ BCD_IMPORT_FLAGS BcdImportFlags
);
View code on GitHub
No description available.