1 // Copyright © 2015, skdltmxn
2 // Licensed under the MIT License <LICENSE.md>
3 //! QoS definitions for NDIS components.
4 pub type SERVICETYPE = ::ULONG;
5 STRUCT!{struct FLOWSPEC {
6     TokenRate: ::ULONG,
7     TokenBucketSize: ::ULONG,
8     PeakBandwidth: ::ULONG,
9     Latency: ::ULONG,
10     DelayVariation: ::ULONG,
11     ServiceType: SERVICETYPE,
12     MaxSduSize: ::ULONG,
13     MinimumPolicedSize: ::ULONG,
14 }}
15 pub type PFLOWSPEC = *mut FLOWSPEC;
16 pub type LPFLOWSPEC = *mut FLOWSPEC;
17