#ifndef _NTBCD_H
/**
* The BcdMarkAsSystemStore function marks the specified BCD store as the system store
* and used by the boot manager and other boot components as the primary source of boot configuration data.
*
* \param BcdStoreHandle Handle to the BCD store to be marked as the system store.
* \return NTSTATUS Successful or errant status.
*/
NTSYSAPI
NTSTATUS
NTAPI
BcdMarkAsSystemStore(
_In_ HANDLE BcdStoreHandle
);
View code on GitHub
No description available.