// ndis.h
typedef struct _NDIS_RECEIVE_QUEUE_STATE {
NDIS_OBJECT_HEADER Header;
ULONG Flags;
NDIS_RECEIVE_QUEUE_ID QueueId;
NDIS_RECEIVE_QUEUE_OPERATIONAL_STATE QueueState;
} NDIS_RECEIVE_QUEUE_STATE, *PNDIS_RECEIVE_QUEUE_STATE;
View the official Windows Driver Kit DDI referenceNo description available.
The NDIS_RECEIVE_QUEUE_STATE structure contains information about the operational state of a receive queue.
HeaderThe NDIS_OBJECT_HEADER structure for the NDIS_RECEIVE_QUEUE_STATE structure. The driver sets the Type member of the structure that Header specifies to NDIS_OBJECT_TYPE_DEFAULT, the Revision member to NDIS_RECEIVE_QUEUE_STATE_REVISION_1, and the Size member to NDIS_SIZEOF_NDIS_RECEIVE_QUEUE_STATE_REVISION_1.
FlagsA ULONG value that contains a bitwise OR of flags. This member is reserved for NDIS.
QueueIdAn NDIS_RECEIVE_QUEUE_ID type value that contains a queue identifier. The queue identifier is an integer value between zero and the number of queues that the network adapter supports. A value of NDIS_DEFAULT_RECEIVE_QUEUE_ID specifies the default receive queue.
QueueStateAn NDIS_RECEIVE_QUEUE_OPERATIONAL_STATE enumeration value that specifies the operational state of the receive queue.
The NDIS_RECEIVE_QUEUE_STATE structure is used in the NDIS_RECEIVE_QUEUE_STATE status indication.
NDIS_RECEIVE_QUEUE_OPERATIONAL_STATE
NDIS_RECEIVE_QUEUE_STATE