winsafe 0.0.27

Windows API and GUI in safe, idiomatic Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod himagelist;
mod hpropsheetpage;
mod hwnd;

pub mod decl {
	pub use super::himagelist::HIMAGELIST;
	pub use super::hpropsheetpage::HPROPSHEETPAGE;

	handle! { HTREEITEM;
		/// Handle to a
		/// [tree view item](https://learn.microsoft.com/en-us/windows/win32/controls/tree-view-controls).
	}
}