WDF_EVENT_TYPE - NtDoc

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

typedef enum _WDF_EVENT_TYPE {
  WdfEventReserved = 0,
  WdfEventBroadcast = 1,
  WdfEventMaximum
} WDF_EVENT_TYPE;
View the official Windows Driver Kit DDI reference
// wudfddi_types.h

typedef enum _WDF_EVENT_TYPE {
  WdfEventReserved,
  WdfEventBroadcast,
  WdfEventMaximum
} WDF_EVENT_TYPE;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ne-wdfdevice-_wdf_event_type)

_WDF_EVENT_TYPE enumeration (wdfdevice.h)

Description

[Applies to UMDF only]

The WDF_EVENT_TYPE enumeration specifies types of events about which a driver can notify a registered application.

Constants

WdfEventReserved:0

Reserved for system use.

WdfEventBroadcast:1

In the current version of UMDF, the driver must specify WdfEventBroadcast. For more information, see WdfDevicePostEvent.

WdfEventMaximum

Reserved for system use.

See also

IWDFDevice::PostEvent

WdfDevicePostEvent


Windows Driver Kit DDI reference (ne-wudfddi_types-_wdf_event_type)

_WDF_EVENT_TYPE enumeration (wudfddi_types.h)

Description

[Applies to UMDF only]

The WDF_EVENT_TYPE enumeration specifies types of events about which a driver can notify a registered application.

Constants

WdfEventReserved

Reserved for system use.

WdfEventBroadcast

In the current version of UMDF, the driver must specify WdfEventBroadcast. For more information, see WdfDevicePostEvent.

WdfEventMaximum

Reserved for system use.

See also

IWDFDevice::PostEvent

WdfDevicePostEvent