BcdDeleteObjectReferences - NtDoc

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

/**
 * Deletes object references in the BCD store.
 * 
 * @param BcdStoreHandle The handle to the BCD store.
 * @param Identifier The identifier of the object to delete references for.
 * @return NTSTATUS Successful or errant status.
 */
NTSYSAPI
NTSTATUS
NTAPI
BcdDeleteObjectReferences(
    _In_ HANDLE BcdStoreHandle,
    _In_ PGUID Identifier
    );

#endif

View code on GitHub

No description available.