use UIWindowsAndMessaging 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 SBS_BOTTOMALIGN;
/// Has a horizontal scroll bar
pub use 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 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 SBS_RIGHTALIGN;
/// Has a size box
pub use 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 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 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 SBS_TOPALIGN;
/// Has a vertical scroll bar
pub use SBS_VERT;