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;

/// `D.6` CB_ADDSTRING
///
/// sent to a combo box and used to add a string to the combo box's list box
pub use winmsg::CB_ADDSTRING;

/// `D.7` CB_GETCURSEL
///
/// sent to a combo box and used to retrieve the zero-based index position of
/// the currently selected item in the combo box's list box
pub use winmsg::CB_GETCURSEL;

/// `D.8` CB_DELETESTRING
///
/// sent to a combo box and is used to delete a string from the combo box's list
/// box
pub use winmsg::CB_DELETESTRING;

/// `D.9` CB_DIR
///
/// sent to a combo box and used to add a list of filenames to the combo box's
/// list box
pub use winmsg::CB_DIR;

/// `D.10` CB_FINDSTRING
///
/// sent to a combo box and used to search the combo box's list box for an item
/// that begins with the characters in the search string
pub use winmsg::CB_FINDSTRING;

/// `D.11` CB_FINDSTRINGEXACT
///
/// sent to a combo box and used to search for a string in the combo box's list
/// box
pub use winmsg::CB_FINDSTRINGEXACT;

/// `D.12` CB_GETCOUNT
///
/// sent to a combo box and retrieves the number of items in the combo box's
/// list box
pub use winmsg::CB_GETCOUNT;

/// `D.13` CB_GETDROPPEDCONTROLRECT
///
/// sent to a combo box and used to retrieve the screen coordinates of the combo
/// box's visible (dropped-down) list box
pub use winmsg::CB_GETDROPPEDCONTROLRECT;

/// `D.14` CB_GETDROPPEDSTATE
///
/// sent to a combo box and is used to determine if the combo box's list box is
/// visible (dropped down) or not
pub use winmsg::CB_GETDROPPEDSTATE;

/// `D.15` CB_GETEDITSEL
///
/// sent to a combo box and used to retrieve the starting and ending character
/// positions of the characters selected in the combo box's edit control
pub use winmsg::CB_GETEDITSEL;

/// `D.16` CB_GETEXTENDEDUI
///
/// sent to a combo box and used to find out if the combo box has the default
/// user interface or the extended user interface
pub use winmsg::CB_GETEXTENDEDUI;

/// `D.17` CB_GETITEMDATA
///
/// sent to a combo box and used to retrieve the doubleword value that an
/// application has associated with a combo box's list box item, using the
/// CB_SETITEMDATA message
pub use winmsg::CB_GETITEMDATA;

/// `D.18` CB_GETITEMHEIGHT
///
/// sent to a combo box and used to retrieve the height of a component of the
/// combo box
pub use winmsg::CB_GETITEMHEIGHT;

/// `D.19` CB_GETLBTEXT
///
/// sent to a combo box and used to retrieve one of its list box item's strings
pub use winmsg::CB_GETLBTEXT;

/// `D.20` CB_GETLBTEXTLEN
///
/// sent to a combo box and used to retrieve the size, in bytes, of one of the
/// strings in the combo box's list box
pub use winmsg::CB_GETLBTEXTLEN;

/// `D.21` CB_INSERTSTRING
///
/// sent to a combo box and used to add a string to the combo box's list box
pub use winmsg::CB_INSERTSTRING;

/// `D.22` CB_LIMITTEXT
///
/// sent to a combo box and used to limit the size of the text that can be typed
/// into the combo box's edit control
pub use winmsg::CB_LIMITTEXT;

/// `D.23` CB_RESETCONTENT
///
/// sent to a combo box and is used to clear the contents of the combo box's
/// list box and edit control
pub use winmsg::CB_RESETCONTENT;

/// `D.24` CB_SELECTSTRING
///
/// sent to a combo box and used to search the combo box's list box for an item
/// that begins with the characters in a given search string
pub use winmsg::CB_SELECTSTRING;

/// `D.25` CB_SETCURSEL
///
/// sent to a combo box and used to select an item in the combo box's list box
pub use winmsg::CB_SETCURSEL;

/// `D.26` CB_SETEDITSEL
///
/// sent to a combo box and used to select characters in the edit control of a
/// combo box
pub use winmsg::CB_SETEDITSEL;

/// `D.27` CB_SETEXTENDEDUI
///
/// sent to a combo box and used to select either the default user interface or
/// the extended user interface for a combo box that has the CBS_DROPDOWN or
/// CBS_DROPDOWNLIST style
pub use winmsg::CB_SETEXTENDEDUI;

/// `D.28` CB_SETITEMDATA
///
/// sent to a combo box and used to set the doubleword value associated with the
/// specified item in a combo box
pub use winmsg::CB_SETITEMDATA;

/// `D.29` CB_SETITEMHEIGHT
///
/// sent to a combo box and used to set the height of list items in a combo box
/// or the height of the edit-control (or static-text) portion of a combo box
pub use winmsg::CB_SETITEMHEIGHT;

/// `D.30` CB_SHOWDROPDOWN
///
/// sent to a combo box and used to show or hide the list box of a combo box
/// that has the CBS_DROPDOWN or CBS_DROPDOWNLIST style
pub use winmsg::CB_SHOWDROPDOWN;