WDF_WMI_PROVIDER_CONTROL - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// wdfwmi.h

typedef enum _WDF_WMI_PROVIDER_CONTROL {
  WdfWmiControlInvalid = 0,
  WdfWmiEventControl,
  WdfWmiInstanceControl
} WDF_WMI_PROVIDER_CONTROL;

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ne-wdfwmi-_wdf_wmi_provider_control)

_WDF_WMI_PROVIDER_CONTROL enumeration

Description

[Applies to KMDF only]

The WDF_WMI_PROVIDER_CONTROL enumeration defines the type of control functions that a WMI data provider can support.

Constants

WdfWmiControlInvalid:0

For internal use only.

WdfWmiEventControl

The driver must enable or disable delivering events for a provider instance.

WdfWmiInstanceControl

The driver must enable or disable collecting data for a provider instance.

Remarks

The WDF_WMI_PROVIDER_CONTROL enumeration is used as an input parameter to the WdfWmiProviderIsEnabled method and the driver's EvtWmiProviderFunctionControl callback function.

See also

EvtWmiProviderFunctionControl

WdfWmiProviderIsEnabled