BcdCopyObject - NtDoc

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

/**
 * The BcdCopyObject function copies a BCD object from one store to another.
 *
 * \param BcdStoreHandle Handle to the source BCD store.
 * \param BcdObjectHandle Handle to the BCD object to copy.
 * \param BcdCopyFlags Flags that control the copy operation.
 * \param TargetStoreHandle Handle to the target BCD store.
 * \param TargetObjectHandle Receives the handle to the copied BCD object in the target store.
 * \return NTSTATUS Successful or errant status.
 */
NTSYSAPI
NTSTATUS
NTAPI
BcdCopyObject(
    _In_ HANDLE BcdStoreHandle,
    _In_ HANDLE BcdObjectHandle,
    _In_ BCD_COPY_FLAGS BcdCopyFlags,
    _In_ HANDLE TargetStoreHandle,
    _Out_ PHANDLE TargetObjectHandle
    );

#endif

View code on GitHub

No description available.