Commit 9a2084fe authored by Frank Richter's avatar Frank Richter Committed by Alexandre Julliard

Add WC_COMBOBOX.

parent 59970a7c
......@@ -4875,6 +4875,20 @@ static const WCHAR WC_STATICW[] = { 'S','t','a','t','i','c',0 };
#endif
#define WC_STATIC WINELIB_NAME_AW(WC_STATIC)
/**************************************************************************
* Combobox control
*/
#define WC_COMBOBOXA "ComboBox"
#if defined(__GNUC__)
# define WC_COMBOBOXW (const WCHAR []){ 'C','o','m','b','o','B','o','x',0 }
#elif defined(_MSC_VER)
# define WC_COMBOBOXW L"ComboBox"
#else
static const WCHAR WC_COMBOBOXW[] = { 'C','o','m','b','o','B','o','x',0 };
#endif
#define WC_COMBOBOX WINELIB_NAME_AW(WC_COMBOBOX)
#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