winapi 0.2.8

Types and constants for WinAPI bindings. See README for list of crates providing function bindings.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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;