Add WC_COMBOBOX.

oldstable
Frank Richter 2005-08-11 17:06:41 +00:00 committed by Alexandre Julliard
parent 59970a7c04
commit 9a2084fe85
1 changed files with 14 additions and 0 deletions

View File

@ -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