#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
);
View code on GitHub
No description available.