apiw-sys 0.1.0

This crate provides core API bindings for Windows according to ECMA-234.
Documentation
// FIXME: use a more correct namespace
use windows_sys::Win32::System::SystemServices as syssvcs;

/// Specifies a box with a frame drawn with the same color as window frames
pub use syssvcs::SS_BLACKFRAME;

/// Specifies a rectangle filled with the same color as window frames
pub use syssvcs::SS_BLACKRECT;

/// Specifies a simple rectangle and aligns the displayed text in the center
pub use syssvcs::SS_CENTER;

/// Specifies a box with a frame drawn with the same color as the desktop
pub use syssvcs::SS_GRAYFRAME;

/// Specifies a rectangle filled with the color used to fill the screen
/// background
pub use syssvcs::SS_GRAYRECT;

/// Designates an icon displayed in the dialog box
pub use syssvcs::SS_ICON;

/// Designates a simple rectangle and left-aligns the displayed text
pub use syssvcs::SS_LEFT;

/// Designates a simple rectangle and left-aligns the displayed text in the
/// rectangle
pub use syssvcs::SS_LEFTNOWORDWRAP;

/// Prevents interpretation of any ampersand (&) characters in the control's
/// text as accelerator prefix characters (which are displayed with the &
/// character removed and the next character in the string underlined)
pub use syssvcs::SS_NOPREFIX;

/// Designates a simple rectangle and right-aligns the displayed text in the
/// rectangle
pub use syssvcs::SS_RIGHT;

/// Designates a simple rectangle and displays a single line of text
/// left-aligned in the rectangle
pub use syssvcs::SS_SIMPLE;

/// Designates a frame drawn in the same color as the window background
pub use syssvcs::SS_WHITEFRAME;

/// Designates a rectangle filled with the window background color
pub use syssvcs::SS_WHITERECT;