windows_reference/lib.rs
1#![doc = include_str!("../readme.md")]
2#![cfg_attr(all(not(feature = "std")), no_std)]
3
4#[cfg(all(windows, feature = "std"))]
5#[expect(non_snake_case, non_camel_case_types, non_upper_case_globals)]
6mod bindings;
7
8#[cfg(all(windows, feature = "std"))]
9mod reference;
10
11#[cfg(all(windows, feature = "std"))]
12pub use reference::IReference;