apiw-sys 0.1.0

This crate provides core API bindings for Windows according to ECMA-234.
Documentation
use windows_sys::Win32::UI::WindowsAndMessaging as winmsg;

/// Window is a multiple document interface (MDI) client window that can have
/// any combination of window styles
pub use winmsg::MDIS_ALLCHILDSTYLES;

/// Window has a border
pub use winmsg::WS_BORDER;

/// Window has a title bar and uses the `WS_BORDER` style
pub use winmsg::WS_CAPTION;

/// Window is a child window
pub use winmsg::WS_CHILD;

/// Same as the `WS_CHILD` style
pub use winmsg::WS_CHILDWINDOW;

/// When drawing within the parent window, the area occupied by child windows is
/// excluded
pub use winmsg::WS_CLIPCHILDREN;

/// When a child window receives a paint message and needs to be updated, this
/// style clips all other overlapped child windows out of the child window's
/// update region
pub use winmsg::WS_CLIPSIBLINGS;

/// Window is initially disabled
pub use winmsg::WS_DISABLED;

/// Window has a double border but no title
pub use winmsg::WS_DLGFRAME;

/// The style designates a control (a window) as being the first control in a
/// group of controls
pub use winmsg::WS_GROUP;

/// This style creates a window that has a maximum size
pub use winmsg::WS_MAXIMIZE;

/// This style creates a window that has a Maximize box
pub use winmsg::WS_MAXIMIZEBOX;

/// This style creates a window that has a minimum size
pub use winmsg::WS_MINIMIZE;

/// This style creates a window that has a Minimize box
pub use winmsg::WS_MINIMIZEBOX;

/// This style creates an overlapped window
pub use winmsg::WS_OVERLAPPED;

/// This style creates an overlapped window that has the `WS_OVERLAPPED`,
/// `WS_CAPTION`, `WS_SYSMENU`, `WS_THICKFRAME`, `WS_MINIMIZEBOX`, and
/// `WS_MAXIMIZEBOX` styles
pub use winmsg::WS_OVERLAPPEDWINDOW;

/// This style creates a pop-up window
pub use winmsg::WS_POPUP;

/// This style creates a pop-up window that has the `WS_POPUP`, `WS_BORDER`, and
/// `WS_SYSMENU` styles
pub use winmsg::WS_POPUPWINDOW;

/// This style creates a window that has a System-menu box in its title bar
pub use winmsg::WS_SYSMENU;