// ntddndis.h
typedef enum _NDIS_RECEIVE_QUEUE_TYPE {
NdisReceiveQueueTypeUnspecified,
NdisReceiveQueueTypeVMQueue,
NdisReceiveQueueTypeMaximum
} NDIS_RECEIVE_QUEUE_TYPE, *PNDIS_RECEIVE_QUEUE_TYPE;
View the official Windows Driver Kit DDI reference
No description available.
The NDIS_RECEIVE_QUEUE_TYPE enumeration identifies the type of a receive queue.
NdisReceiveQueueTypeUnspecified
The receive queue type is not specified.
NdisReceiveQueueTypeVMQueue
This value specifies a virtual machine (VM) receive queue.
NdisReceiveQueueTypeMaximum
The maximum value for this enumeration. This value might change in future versions of the NDIS header files and binaries.
The NDIS_RECEIVE_QUEUE_TYPE enumeration is used in the QueueType member of the NDIS_RECEIVE_QUEUE_PARAMETERS and NDIS_RECEIVE_QUEUE_INFO structures.