1#![cfg_attr(docsrs, doc = "This is a stub. The latest API documentation is here: <https://microsoft.github.io/windows-docs-rs/>")]
2#![cfg_attr(docsrs, doc = "")]
3/*!
4Learn more about Rust for Windows here: <https://github.com/microsoft/windows-rs>
5*/
6
7#![doc(html_no_source)]
8#![allow(non_snake_case, clashing_extern_declarations, non_upper_case_globals, non_camel_case_types, clippy::all)]
9#![cfg_attr(not(feature = "docs"), doc(hidden))]
10
11extern crate self as windows;
12
13pub mod core {
14 pub use windows_core::*;
15
16 #[cfg(feature = "implement")]
17 pub use windows_implement::implement;
18
19 #[cfg(feature = "implement")]
20 pub use windows_interface::interface;
21}
22
23include!("Windows/mod.rs");
24