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;

/// The bottom edge of the scroll bar is aligned with the bottom edge of the
/// rectangle given by the CreateWindow() function's parameters
pub use winmsg::SBS_BOTTOMALIGN;

/// Has a horizontal scroll bar
pub use winmsg::SBS_HORZ;

/// The left edge of the scroll bar is aligned with the left edge of the
/// rectangle given by the CreateWindow() function's parameters
pub use winmsg::SBS_LEFTALIGN;

/// The right edge of the scroll bar is aligned with the right edge of the
/// rectangle given by the CreateWindow() function's parameters
pub use winmsg::SBS_RIGHTALIGN;

/// Has a size box
pub use winmsg::SBS_SIZEBOX;

/// The lower-right corner of the size box is aligned with the lower-right
/// corner of the rectangle given by the CreateWindow() function's parameters
pub use winmsg::SBS_SIZEBOXBOTTOMRIGHTALIGN;

/// The upper-left corner of the size box is aligned with the upper-left corner
/// of the rectangle given by the CreateWindow() function's parameters
pub use winmsg::SBS_SIZEBOXTOPLEFTALIGN;

/// The top edge of the scroll bar is aligned with the top edge of the rectangle
/// given by the CreateWindow() parameters
pub use winmsg::SBS_TOPALIGN;

/// Has a vertical scroll bar
pub use winmsg::SBS_VERT;