1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
// Licensed under the Apache License, Version 2.0
// <LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
// All files in the project carrying such notice may not be copied, modified, or distributed
// except according to those terms.
//! Headers shared between user mode and kernel mode
#[cfg(feature = "basetsd")] pub mod basetsd;
#[cfg(feature = "bcrypt")] pub mod bcrypt;
#[cfg(feature = "bthdef")] pub mod bthdef;
#[cfg(feature = "bthioctl")] pub mod bthioctl;
#[cfg(feature = "bthsdpdef")] pub mod bthsdpdef;
#[cfg(feature = "bugcodes")] pub mod bugcodes;
#[cfg(feature = "cderr")] pub mod cderr;
#[cfg(feature = "cfg")] pub mod cfg;
#[cfg(feature = "d3d9")] pub mod d3d9;
#[cfg(feature = "d3d9caps")] pub mod d3d9caps;
#[cfg(feature = "d3d9types")] pub mod d3d9types;
#[cfg(feature = "d3dkmdt")] pub mod d3dkmdt;
#[cfg(feature = "d3dukmdt")] pub mod d3dukmdt;
#[cfg(feature = "dcomptypes")] pub mod dcomptypes;
#[cfg(feature = "devguid")] pub mod devguid;
#[cfg(feature = "devpkey")] pub mod devpkey;
#[cfg(feature = "devpropdef")] pub mod devpropdef;
#[cfg(feature = "dinputd")] pub mod dinputd;
#[cfg(feature = "dxgi")] pub mod dxgi;
#[cfg(feature = "dxgi1_2")] pub mod dxgi1_2;
#[cfg(feature = "dxgi1_3")] pub mod dxgi1_3;
#[cfg(feature = "dxgi1_4")] pub mod dxgi1_4;
#[cfg(feature = "dxgi1_5")] pub mod dxgi1_5;
#[cfg(feature = "dxgi1_6")] pub mod dxgi1_6;
#[cfg(feature = "dxgiformat")] pub mod dxgiformat;
#[cfg(feature = "dxgitype")] pub mod dxgitype;
#[cfg(feature = "evntprov")] pub mod evntprov;
#[cfg(feature = "evntrace")] pub mod evntrace;
pub mod guiddef;
#[cfg(feature = "hidclass")] pub mod hidclass;
#[cfg(feature = "hidpi")] pub mod hidpi;
#[cfg(feature = "hidsdi")] pub mod hidsdi;
#[cfg(feature = "hidusage")] pub mod hidusage;
#[cfg(feature = "ifdef")] pub mod ifdef;
#[cfg(feature = "in6addr")] pub mod in6addr;
#[cfg(feature = "inaddr")] pub mod inaddr;
#[cfg(feature = "intsafe")] pub mod intsafe;
#[cfg(feature = "ks")] pub mod ks;
#[cfg(feature = "ksmedia")] pub mod ksmedia;
#[cfg(feature = "ktmtypes")] pub mod ktmtypes;
#[cfg(feature = "lmcons")] pub mod lmcons;
#[cfg(feature = "minwindef")] pub mod minwindef;
#[cfg(feature = "mmreg")] pub mod mmreg;
#[cfg(feature = "mstcpip")] pub mod mstcpip;
#[cfg(feature = "mswsockdef")] pub mod mswsockdef;
#[cfg(feature = "netioapi")] pub mod netioapi;
#[cfg(feature = "ntddscsi")] pub mod ntddscsi;
#[cfg(feature = "ntddser")] pub mod ntddser;
#[cfg(feature = "ntdef")] pub mod ntdef;
#[cfg(feature = "ntstatus")] pub mod ntstatus;
#[cfg(feature = "qos")] pub mod qos;
#[cfg(feature = "rpc")] pub mod rpc;
#[cfg(feature = "rpcdce")] pub mod rpcdce;
#[cfg(feature = "rpcndr")] pub mod rpcndr;
#[cfg(feature = "sddl")] pub mod sddl;
#[cfg(feature = "sspi")] pub mod sspi;
#[cfg(feature = "stralign")] pub mod stralign;
#[cfg(feature = "transportsettingcommon")] pub mod transportsettingcommon;
#[cfg(feature = "tvout")] pub mod tvout;
#[cfg(feature = "usb")] pub mod usb;
#[cfg(feature = "usbiodef")] pub mod usbiodef;
#[cfg(feature = "usbspec")] pub mod usbspec;
#[cfg(feature = "windef")] pub mod windef;
#[cfg(feature = "windowsx")] pub mod windowsx;
#[cfg(feature = "winerror")] pub mod winerror;
#[cfg(feature = "winusbio")] pub mod winusbio;
#[cfg(feature = "wmistr")] pub mod wmistr;
#[cfg(feature = "wnnc")] pub mod wnnc;
#[cfg(feature = "ws2def")] pub mod ws2def;
#[cfg(feature = "ws2ipdef")] pub mod ws2ipdef;
#[cfg(feature = "wtypes")] pub mod wtypes;
#[cfg(feature = "wtypesbase")] pub mod wtypesbase;