BcdQueryObject - NtDoc

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

/**
 * The BcdQueryObject function queries a BCD object for its description and identifier.
 *
 * \param BcdObjectHandle Handle to the BCD object to query.
 * \param BcdVersion The version of the BCD object description structure (use BCD_OBJECT_DESCRIPTION_VERSION).
 * \param Description Receives the BCD_OBJECT_DESCRIPTION structure for the object.
 * \param Identifier Receives the GUID identifier of the object.
 * \return NTSTATUS Successful or errant status.
 */
NTSYSAPI
NTSTATUS
NTAPI
BcdQueryObject(
    _In_ HANDLE BcdObjectHandle,
    _In_ ULONG BcdVersion, // BCD_OBJECT_DESCRIPTION_VERSION
    _Out_ BCD_OBJECT_DESCRIPTION Description,
    _Out_ PGUID Identifier
    );

#endif

View code on GitHub

No description available.