1 | #![allow( |
---|---|
2 | non_snake_case, |
3 | non_camel_case_types, |
4 | non_upper_case_globals, |
5 | clippy::all |
6 | )] |
7 | #![doc= include_str!( "../readme.md")] |
8 | #![allow(missing_docs)] |
9 | #![cfg_attr(all(not(feature = "std")), no_std)] |
10 | |
11 | mod bindings; |
12 | mod bindings_impl; |
13 | mod get; |
14 | mod waiter; |
15 | |
16 | pub use bindings::*; |
17 | use bindings_impl::*; |
18 | use waiter::*; |
19 | use windows_core::*; |
20 | |
21 | #[cfg(feature = "std")] |
22 | mod async_ready; |
23 | #[cfg(feature = "std")] |
24 | mod async_spawn; |
25 | #[cfg(feature = "std")] |
26 | mod future; |
27 | #[cfg(feature = "std")] |
28 | use future::*; |
29 |