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;