1 | #![doc= include_str!( "../readme.md")] |
---|---|
2 | #![allow(missing_docs)] |
3 | #![cfg_attr(all(not(feature = "std")), no_std)] |
4 | |
5 | mod bindings; |
6 | pub use bindings::*; |
7 | |
8 | #[cfg(feature = "std")] |
9 | const E_BOUNDS: windows_core::HRESULT = windows_core::HRESULT(0x8000000B_u32 as _); |
10 | |
11 | #[cfg(feature = "std")] |
12 | mod iterable; |
13 | #[cfg(feature = "std")] |
14 | mod map_view; |
15 | #[cfg(feature = "std")] |
16 | mod vector_view; |
17 |