#ifndef _NTBCD_H
/**
* The BcdCopyObjects function copies multiple BCD objects from one store to another based on specified characteristics.
*
* \param BcdStoreHandle Handle to the source BCD store.
* \param Characteristics Pointer to a BCD_OBJECT_DESCRIPTION structure specifying the objects to copy.
* \param BcdCopyFlags Flags that control the copy operation.
* \param TargetStoreHandle Handle to the target BCD store.
* \return NTSTATUS Successful or errant status.
*/
NTSYSAPI
NTSTATUS
NTAPI
BcdCopyObjects(
_In_ HANDLE BcdStoreHandle,
_In_ PBCD_OBJECT_DESCRIPTION Characteristics,
_In_ BCD_COPY_FLAGS BcdCopyFlags,
_In_ HANDLE TargetStoreHandle
);
View code on GitHub
No description available.