apiw-sys 0.1.0

This crate provides core API bindings for Windows according to ECMA-234.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use windows_sys::Win32::UI::WindowsAndMessaging as winmsg;

/// `D.92` STM_GETICON
///
/// sent to a static control to get the handle of an icon associated with the
/// icon resource
pub use winmsg::STM_GETICON;

/// `D.93` STM_SETICON
///
/// sent to a static control to associate an icon with an icon resource
pub use winmsg::STM_SETICON;