#ifndef _NTDBG_H
/**
* Sets the debug filter state for a component.
*
* \param ComponentId The ID of the component.
* \param Level The importance level.
* \param State The new state for the filter.
* \return NTSTATUS Successful or errant status.
*/
NTSYSAPI
NTSTATUS
NTAPI
DbgSetDebugFilterState(
_In_ ULONG ComponentId,
_In_ ULONG Level,
_In_ BOOLEAN State
);
View code on GitHubNo description available.