// storport.h
typedef enum _STOR_EVENT_TYPE {
StorNotificationEvent,
StorSynchronizationEvent
} STOR_EVENT_TYPE, *PSTOR_EVENT_TYPE;
View the official Windows Driver Kit DDI referenceNo description available.
The STOR_EVENT_TYPE enum identifies the type of event object initialized by a miniport.
StorNotificationEventThe event is a notification event.
StorSynchronizationEventThe event is a synchronization event.
A miniport initializes an event object by calling StorPortInitializeEvent, passing in a STOR_EVENT_TYPE enum to identify the type of the event object.