STOR_DISPATCHER_HEADER - NtDoc

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

typedef struct _STOR_DISPATCHER_HEADER {
  union {
    struct {
      UCHAR Type;
      UCHAR Flags;
      UCHAR Size;
      union {
        UCHAR   Inserted;
        BOOLEAN DebugActive;
      };
    } Data;
    LONG Lock;
  };
  LONG            SignalState;
  STOR_LIST_ENTRY WaitListHead;
} STOR_DISPATCHER_HEADER, *PSTOR_DISPATCHER_HEADER;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-storport-stor_dispatcher_header)

STOR_DISPATCHER_HEADER structure

Description

The STOR_DISPATCHER_HEADER structure is an opaque structure that describes a dispatcher object.

Members

Data

Reserved for system use.

Data.Type

Reserved for system use.

Data.Flags

Reserved for system use.

Data.Size

Reserved for system use.

Data.Inserted

Reserved for system use.

Data.DebugActive

Reserved for system use.

Lock

Reserved for system use.

SignalState

Reserved for system use.

WaitListHead

Reserved for system use.

Remarks

STOR_DISPATCHER_HEADER is a member of the STOR_EVENT structure that is passed to StorPortInitializeEvent and StorPortSetEvent.

See also

KeInitializeEvent STOR_EVENT

StorPortInitializeEvent

StorPortSetEvent