// 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 referenceNo description available.
The STOR_DISPATCHER_HEADER structure is an opaque structure that describes a dispatcher object.
DataReserved for system use.
Data.TypeReserved for system use.
Data.FlagsReserved for system use.
Data.SizeReserved for system use.
Data.InsertedReserved for system use.
Data.DebugActiveReserved for system use.
LockReserved for system use.
SignalStateReserved for system use.
WaitListHeadReserved for system use.
STOR_DISPATCHER_HEADER is a member of the STOR_EVENT structure that is passed to StorPortInitializeEvent and StorPortSetEvent.