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