BcdOpenObject - NtDoc

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

/**
 * The BcdOpenObject function opens a BCD object by its identifier.
 *
 * \param BcdStoreHandle Handle to the BCD store.
 * \param Identifier Pointer to the GUID of the object to open.
 * \param BcdObjectHandle Receives the handle to the opened BCD object.
 * \return NTSTATUS Successful or errant status.
 */
NTSYSAPI
NTSTATUS
NTAPI
BcdOpenObject(
    _In_ HANDLE BcdStoreHandle,
    _In_ PCGUID Identifier,
    _Out_ PHANDLE BcdObjectHandle
    );

#endif

View code on GitHub

No description available.