apiw-sys 0.1.0

This crate provides core API bindings for Windows according to ECMA-234.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use windows_sys::Win32::UI::WindowsAndMessaging as winmsg;

/// `D.31` DM_GETDEFID
///
/// sent to a dialog box to get the identifier of the default push button
pub use winmsg::DM_GETDEFID;

/// `D.32` DM_SETDEFID
///
/// sent to a dialog box to change the identifier of the default push button for
/// a dialog box
pub use winmsg::DM_SETDEFID;