BcdSetLogging - NtDoc

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

/**
 * Sets the logging level and callback function for BCD messages.
 *
 * \param BcdLoggingLevel The logging level to set.
 * \param BcdMessageCallbackRoutine The callback routine for BCD messages.
 * \return NTSTATUS Successful or errant status.
 */
NTSYSAPI
NTSTATUS
NTAPI
BcdSetLogging(
    _In_ BCD_MESSAGE_TYPE BcdLoggingLevel,
    _In_ PBCD_MESSAGE_CALLBACK BcdMessageCallbackRoutine
    );

#endif

View code on GitHub

NtDoc

No description available.