BcdOpenStore - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTBCD_H

/**
 * Opens a BCD store with additional flags.
 * 
 * @param BcdFilePath The file path of the BCD store.
 * @param BcdOpenFlags The flags for opening the store.
 * @param BcdStoreHandle The handle to receive the BCD store.
 * @return NTSTATUS Successful or errant status.
 */
NTSYSAPI
NTSTATUS
NTAPI
BcdOpenStore(
    _In_ UNICODE_STRING BcdFilePath,
    _In_ BCD_OPEN_FLAGS BcdOpenFlags,
    _Out_ PHANDLE BcdStoreHandle
    );

#endif

View code on GitHub

No description available.