blob: 91026b392e8d8948a9bf5001fda1c1f901739e72 [file] [log] [blame] [edit]
// Copyright © 2015, skdltmxn
// Licensed under the MIT License <LICENSE.md>
//! QoS definitions for NDIS components.
pub type SERVICETYPE = ::ULONG;
STRUCT!{struct FLOWSPEC {
TokenRate: ::ULONG,
TokenBucketSize: ::ULONG,
PeakBandwidth: ::ULONG,
Latency: ::ULONG,
DelayVariation: ::ULONG,
ServiceType: SERVICETYPE,
MaxSduSize: ::ULONG,
MinimumPolicedSize: ::ULONG,
}}
pub type PFLOWSPEC = *mut FLOWSPEC;
pub type LPFLOWSPEC = *mut FLOWSPEC;