From 9a2084fe853f6057c6f5427afb31b2b6fa22f104 Mon Sep 17 00:00:00 2001 From: Frank Richter Date: Thu, 11 Aug 2005 17:06:41 +0000 Subject: [PATCH] Add WC_COMBOBOX. --- include/commctrl.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/include/commctrl.h b/include/commctrl.h index e0bc37267a4..9801acaa061 100644 --- a/include/commctrl.h +++ b/include/commctrl.h @@ -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