// ntddndis.h
typedef enum _NDIS_QOS_SQ_TYPE {
NdisQosSqTypeUndefined,
NdisQosSqTypeStandard,
NdisQosSqTypeGFT,
NdisQosSqTypeMax
} NDIS_QOS_SQ_TYPE, *PNDIS_QOS_SQ_TYPE;
View the official Windows Driver Kit DDI referenceNo description available.
The NDIS_QOS_SQ_TYPE enumeration specifies the type of an NDIS Quality of Service (QoS) Scheduler Queue (SQ).
The following SQ types are defined:
NdisQosSqTypeUndefinedAn undefined SQ type used for validation in code.
NdisQosSqTypeStandardA standard (non-GFT) SQ.
NdisQosSqTypeGFTNot currently in use.
NdisQosSqTypeMaxUsed for validation in code.
The NDIS_QOS_SQ_TYPE enumeration is a member of the NDIS_QOS_SQ_PARAMETERS, NDIS_QOS_SQ_ARRAY, and NDIS_QOS_SQ_STATS structures.