finestre-sys 0.1.0

Bare-bones bindings for a very limited subset of the Win32 API. Advise you use the official windows-sys crate instead.
Documentation
1
2
3
4
5
6
7
8
use crate::typedefs::*;

// SendMessageTimeOut flags
pub const SMTO_ABORTIFHUNG: DWORD = 0x0002;
pub const SMTO_BLOCK: DWORD = 0x0001;
pub const SMTO_NORMAL: DWORD = 0x0000;
pub const SMTO_NOTIMEOUTIFNOTHUNG: DWORD = 0x0008;
pub const SMTO_ERRORONEXIT: DWORD = 0x0020;