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
use crate::co::*;

const_values_num_privs! {
	//SEE_MASK_FLAG_HINST_IS_SITE: SEE_MASK = 0x0800_0000
	//SEE_MASK_NOQUERYCLASSSTORE: SEE_MASK = 0x0100_0000
	SEE_MASK_CLASSKEY: SEE_MASK = 0x0000_0003
	SEE_MASK_CLASSNAME: SEE_MASK = 0x0000_0001
	SEE_MASK_HMONITOR: SEE_MASK = 0x0020_0000
	SEE_MASK_HOTKEY: SEE_MASK = 0x0000_0020
	SEE_MASK_ICON: SEE_MASK = 0x0000_0010
	SEE_MASK_IDLIST: SEE_MASK = 0x0000_0004
}