BcdExportStoreEx - NtDoc

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

/**
 * Exports the BCD store to a file with additional flags.
 * 
 * @param BcdStoreHandle The handle to the BCD store.
 * @param Flags The flags for exporting the store.
 * @param BcdFilePath The file path to export the BCD store.
 * @return NTSTATUS Successful or errant status.
 */
NTSYSAPI
NTSTATUS
NTAPI
BcdExportStoreEx(
    _In_ HANDLE BcdStoreHandle,
    _In_ ULONG Flags,
    _In_ UNICODE_STRING BcdFilePath
    );

#endif
#endif

View code on GitHub

No description available.