STOR_EVENT_TYPE - NtDoc

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

typedef enum _STOR_EVENT_TYPE {
  StorNotificationEvent,
  StorSynchronizationEvent
} STOR_EVENT_TYPE, *PSTOR_EVENT_TYPE;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ne-storport-stor_event_type)

STOR_EVENT_TYPE enumeration

Description

The STOR_EVENT_TYPE enum identifies the type of event object initialized by a miniport.

Constants

StorNotificationEvent

The event is a notification event.

StorSynchronizationEvent

The event is a synchronization event.

Remarks

A miniport initializes an event object by calling StorPortInitializeEvent, passing in a STOR_EVENT_TYPE enum to identify the type of the event object.

See also

StorPortInitializeEvent