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.61` LB_ADDSTRING
///
/// sent to a list box to add a string to the list box control
pub use winmsg::LB_ADDSTRING;

/// `D.62` LB_DELETESTRING
///
/// sent to a list box to delete a string to the list box control
pub use winmsg::LB_DELETESTRING;

/// `D.63` LB_DIR
///
/// sent to a list box to add a directory listing to a list box according to the
/// parameters that are passed
pub use winmsg::LB_DIR;

/// `D.64` LB_FINDSTRING
///
/// sent to a list box to search the list for a matching entry and returns its
/// index
pub use winmsg::LB_FINDSTRING;

/// `D.65` LB_FINDSTRINGEXACT
///
/// sent to a list box to search the list for a matching entry and returns its
/// index
pub use winmsg::LB_FINDSTRINGEXACT;

/// `D.66` LB_GETCARETINDEX
///
/// sent to a list box to find the list item that currently has the focus,
/// regardless of whether it is selected
pub use winmsg::LB_GETCARETINDEX;

/// `D.67` LB_GETCOUNT
///
/// sent to a list box to find the number of items currently in the list
pub use winmsg::LB_GETCOUNT;

/// `D.68` LB_GETCURSEL
///
/// sent to a list box to find the index of the currently selected item in the
/// list
pub use winmsg::LB_GETCURSEL;

/// `D.69` LB_GETHORIZONTALEXTENT
///
/// sent to a list box to finds the number of pixel that can be horizontally
/// scrolled within the list box, if the list box has a horizontal scroll bar
pub use winmsg::LB_GETHORIZONTALEXTENT;

/// `D.70` LB_GETITEMDATA
///
/// sent to a list box to retrieve data that the application has associated with
/// a given item in the list
pub use winmsg::LB_GETITEMDATA;

/// `D.71` LB_GETITEMHEIGHT
///
/// sent to a list box to retrieve the height of an item in a list box
pub use winmsg::LB_GETITEMHEIGHT;

/// `D.72` LB_GETITEMRECT
///
/// sent to a list box to retrieve the display rectangle of an item within the
/// list box
pub use winmsg::LB_GETITEMRECT;

/// `D.73` LB_GETSEL
///
/// sent to a list box to retrieve the selection status of an item in a list box
pub use winmsg::LB_GETSEL;

/// `D.74` LB_GETSELCOUNT
///
/// sent to a list box to retrieve the number of items selected in a list box
pub use winmsg::LB_GETSELCOUNT;

/// `D.75` LB_GETSELITEMS
///
/// sent to a list box to get the index values for all selected items
pub use winmsg::LB_GETSELITEMS;

/// `D.76` LB_GETTEXT
///
/// sent to a list box to retrieve a string from a list box
pub use winmsg::LB_GETTEXT;

/// `D.77` LB_GETTEXTLEN
///
/// sent to a list box to retrieve the length of a string from a list box
pub use winmsg::LB_GETTEXTLEN;

/// `D.78` LB_GETTOPINDEX
///
/// sent to a list box to retrieve the index of the first visible item in a list
/// box
pub use winmsg::LB_GETTOPINDEX;

/// `D.79` LB_INSERTSTRING
///
/// sent to a list box to insert a string into a list box
pub use winmsg::LB_INSERTSTRING;

/// `D.80` LB_RESETCONTENT
///
/// sent to a list box to remove all items in a list box
pub use winmsg::LB_RESETCONTENT;

/// `D.81` LB_SELECTSTRING
///
/// sent to a list box to search for an item in the list box that matches the
/// specified string, and if a match is found, selects the item
pub use winmsg::LB_SELECTSTRING;

/// `D.82` LB_SELITEMRANGE
///
/// sent to a list box to select or deselect one or more items in a list box
/// consecutively
pub use winmsg::LB_SELITEMRANGE;

/// `D.83` LB_SETCARETINDEX
///
/// sent to a list box to set the focus on an item in a multiple selection list
/// box
pub use winmsg::LB_SETCARETINDEX;

/// `D.84` LB_SETCOLUMNWIDTH
///
/// sent to a list box to set the column width in a multiple column list box
pub use winmsg::LB_SETCOLUMNWIDTH;

/// `D.85` LB_SETCURSEL
///
/// sent to a list box to select an item in a single selection list box
pub use winmsg::LB_SETCURSEL;

/// `D.86` LB_SETHORIZONTALEXTENT
///
/// sent to a list box to set the width that a list box can be scrolled
/// horizontally
pub use winmsg::LB_SETHORIZONTALEXTENT;

/// `D.87` LB_SETITEMDATA
///
/// sent to a list box to set a value that is associated with a specific item in
/// the list box
pub use winmsg::LB_SETITEMDATA;

/// `D.88` LB_SETITEMHEIGHT
///
/// sent to a list box to set the height of items in a list box
pub use winmsg::LB_SETITEMHEIGHT;

/// `D.89` LB_SETSEL
///
/// sent to a list box to select a string in a multiple selection list box
pub use winmsg::LB_SETSEL;

/// `D.90` LB_SETTABSTOPS
///
/// sent to a list box to set the tab stops in a list box
pub use winmsg::LB_SETTABSTOPS;

/// `D.91` LB_SETTOPINDEX
///
/// sent to a list box to make sure an item in the list box is visible
pub use winmsg::LB_SETTOPINDEX;