summaryrefslogtreecommitdiffstats
path: root/build/rust/windows/src/lib.rs
blob: 9c5c49d089108e5b5317a4c61c1e7df9d51f3a9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#![allow(warnings)]
#![cfg_attr(docsrs, doc = "This is a stub. The latest API documentation is here: <https://microsoft.github.io/windows-docs-rs/>")]
#![cfg_attr(docsrs, doc = "")]
/*!
Learn more about Rust for Windows here: <https://github.com/microsoft/windows-rs>
*/

#![doc(html_no_source)]
#![allow(non_snake_case, clashing_extern_declarations, non_upper_case_globals, non_camel_case_types, clippy::all)]
#![cfg_attr(not(feature = "docs"), doc(hidden))]

extern crate self as windows;

pub mod core {
    pub use windows_core::*;

    #[cfg(feature = "implement")]
    pub use windows_implement::implement;

    #[cfg(feature = "implement")]
    pub use windows_interface::interface;
}

include!(mozbuild::windows_rs_path!("src/Windows/mod.rs"));