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
use windows_sys::Win32::UI::WindowsAndMessaging as winmsg;

/// Creates a dialog box with a modal frame
pub use winmsg::DS_MODALFRAME;

/// Tells the system not to send `WM_ENTERIDLE` messages to the owner of the
/// dialog box while the dialog box is displayed
pub use winmsg::DS_NOIDLEMSG;

/// Creates a system modal dialog box
pub use winmsg::DS_SYSMODAL;