Commit 8d862129 authored by Frank Richter's avatar Frank Richter Committed by Alexandre Julliard

Added WC_SCROLLBAR.

parent 4f36cae4
......@@ -4919,6 +4919,20 @@ static const WCHAR WC_LISTBOXW[] = { 'L','i','s','t','B','o','x',0 };
#endif
#define WC_LISTBOX WINELIB_NAME_AW(WC_LISTBOX)
/**************************************************************************
* Scroll bar control
*/
#define WC_SCROLLBARA "ScrollBar"
#if defined(__GNUC__)
# define WC_SCROLLBARW (const WCHAR []){ 'S','c','r','o','l','l','B','a','r',0 }
#elif defined(_MSC_VER)
# define WC_SCROLLBARW L"ScrollBar"
#else
static const WCHAR WC_SCROLLBARW[] = { 'S','c','r','o','l','l','B','a','r',0 };
#endif
#define WC_SCROLLBAR WINELIB_NAME_AW(WC_SCROLLBAR)
#ifdef __cplusplus
}
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment