windows-reference 0.100.0

Windows reference type
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![doc = include_str!("../readme.md")]
#![cfg_attr(all(not(feature = "std")), no_std)]

#[cfg(all(windows, feature = "std"))]
#[expect(non_snake_case, non_camel_case_types, non_upper_case_globals)]
mod bindings;

#[cfg(all(windows, feature = "std"))]
mod reference;

#[cfg(all(windows, feature = "std"))]
pub use reference::IReference;