// wdfwmi.h
typedef enum _WDF_WMI_PROVIDER_CONTROL {
WdfWmiControlInvalid = 0,
WdfWmiEventControl,
WdfWmiInstanceControl
} WDF_WMI_PROVIDER_CONTROL;
View the official Windows Driver Kit DDI reference
No description available.
[Applies to KMDF only]
The WDF_WMI_PROVIDER_CONTROL enumeration defines the type of control functions that a WMI data provider can support.
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.
The WDF_WMI_PROVIDER_CONTROL enumeration is used as an input parameter to the WdfWmiProviderIsEnabled method and the driver's EvtWmiProviderFunctionControl callback function.