BcdCreateStore - NtDoc

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

#endif

View code on GitHub

No description available.