BcdMarkAsSystemStore - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#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
    );

#endif

View code on GitHub

No description available.