1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// FIXME: use a more correct namespace
use SystemServices as syssvcs;
/// Specifies a box with a frame drawn with the same color as window frames
pub use SS_BLACKFRAME;
/// Specifies a rectangle filled with the same color as window frames
pub use SS_BLACKRECT;
/// Specifies a simple rectangle and aligns the displayed text in the center
pub use SS_CENTER;
/// Specifies a box with a frame drawn with the same color as the desktop
pub use SS_GRAYFRAME;
/// Specifies a rectangle filled with the color used to fill the screen
/// background
pub use SS_GRAYRECT;
/// Designates an icon displayed in the dialog box
pub use SS_ICON;
/// Designates a simple rectangle and left-aligns the displayed text
pub use SS_LEFT;
/// Designates a simple rectangle and left-aligns the displayed text in the
/// rectangle
pub use 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 SS_NOPREFIX;
/// Designates a simple rectangle and right-aligns the displayed text in the
/// rectangle
pub use SS_RIGHT;
/// Designates a simple rectangle and displays a single line of text
/// left-aligned in the rectangle
pub use SS_SIMPLE;
/// Designates a frame drawn in the same color as the window background
pub use SS_WHITEFRAME;
/// Designates a rectangle filled with the window background color
pub use SS_WHITERECT;