Commit 085662f0 authored by Frank Richter's avatar Frank Richter Committed by Alexandre Julliard

Add WC_EDIT and WC_LISTBOX.

parent e9cac261
......@@ -4889,6 +4889,34 @@ static const WCHAR WC_COMBOBOXW[] = { 'C','o','m','b','o','B','o','x',0 };
#endif
#define WC_COMBOBOX WINELIB_NAME_AW(WC_COMBOBOX)
/**************************************************************************
* Edit control
*/
#define WC_EDITA "Edit"
#if defined(__GNUC__)
# define WC_EDITW (const WCHAR []){ 'E','d','i','t',0 }
#elif defined(_MSC_VER)
# define WC_EDITW L"Edit"
#else
static const WCHAR WC_EDITW[] = { 'E','d','i','t',0 };
#endif
#define WC_EDIT WINELIB_NAME_AW(WC_EDIT)
/**************************************************************************
* List box control
*/
#define WC_LISTBOXA "ListBox"
#if defined(__GNUC__)
# define WC_LISTBOXW (const WCHAR []){ 'L','i','s','t','B','o','x',0 }
#elif defined(_MSC_VER)
# define WC_LISTBOXW L"ListBox"
#else
static const WCHAR WC_LISTBOXW[] = { 'L','i','s','t','B','o','x',0 };
#endif
#define WC_LISTBOX WINELIB_NAME_AW(WC_LISTBOX)
#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