// 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 referenceNo description available.
[Applies to UMDF only]
The WDF_EVENT_TYPE enumeration specifies types of events about which a driver can notify a registered application.
WdfEventReserved:0Reserved for system use.
WdfEventBroadcast:1In the current version of UMDF, the driver must specify WdfEventBroadcast. For more information, see WdfDevicePostEvent.
WdfEventMaximumReserved for system use.
[Applies to UMDF only]
The WDF_EVENT_TYPE enumeration specifies types of events about which a driver can notify a registered application.
WdfEventReservedReserved for system use.
WdfEventBroadcastIn the current version of UMDF, the driver must specify WdfEventBroadcast. For more information, see WdfDevicePostEvent.
WdfEventMaximumReserved for system use.