NDIS_RECEIVE_QUEUE_STATE structure (ndis.h)
The NDIS_RECEIVE_QUEUE_STATE structure contains information about the operational state of a receive queue.
Syntax
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;
Members
Header
The 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.
Flags
A ULONG value that contains a bitwise OR of flags. This member is reserved for NDIS.
QueueId
An 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.
QueueState
An NDIS_RECEIVE_QUEUE_OPERATIONAL_STATE enumeration value that specifies the operational state of the receive queue.
Remarks
The NDIS_RECEIVE_QUEUE_STATE structure is used in the NDIS_STATUS_RECEIVE_QUEUE_STATE status indication.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Supported in NDIS 6.20 and later. |
Header | ndis.h (include Ndis.h) |