BcdDeleteElement - NtDoc

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

/**
 * The BcdDeleteElement function deletes a specified element from a BCD object.
 *
 * \param BcdObjectHandle Handle to the BCD object.
 * \param BcdElement The element type to delete (BCD_ELEMENT_DATATYPE).
 * \return NTSTATUS Successful or errant status.
 */
NTSYSAPI
NTSTATUS
NTAPI
BcdDeleteElement(
    _In_ HANDLE BcdObjectHandle,
    _In_ ULONG BcdElement // BCD_ELEMENT_DATATYPE
    );

#endif

View code on GitHub

NtDoc

No description available.