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
//! Win32 constants and types of constants.
//!
//! All types implement bitflag operations, and can be converted to its
//! underlying integer type.

#[macro_use]
mod macros;

mod consts_ab;
mod consts_c;
mod consts_d;
mod consts_ef;
mod consts_ghij;
mod consts_kl;
mod consts_mn;
mod consts_opqr;
mod consts_s;
mod consts_t;
mod consts_uv;
mod consts_wxyz;
mod error;
mod vs;

pub use consts_ab::*;
pub use consts_c::*;
pub use consts_d::*;
pub use consts_ef::*;
pub use consts_ghij::*;
pub use consts_kl::*;
pub use consts_mn::*;
pub use consts_opqr::*;
pub use consts_s::*;
pub use consts_t::*;
pub use consts_uv::*;
pub use consts_wxyz::*;
pub use error::{CDERR, ERROR};
pub use vs::VS;