#ifndef _NTBCD_H
#if (PHNT_VERSION > PHNT_WINDOWS_11)
/**
* The BcdExportStoreEx function 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_ PCUNICODE_STRING BcdFilePath
);
View code on GitHub
No description available.