From 1f72ebad5bfa0ecac055f9da576e7a81a1d141ad Mon Sep 17 00:00:00 2001 From: Frank Richter Date: Tue, 12 Jul 2005 17:55:54 +0000 Subject: [PATCH] Added WC_STATIC. --- include/commctrl.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/include/commctrl.h b/include/commctrl.h index 2d0482cd77b..e0bc37267a4 100644 --- a/include/commctrl.h +++ b/include/commctrl.h @@ -4861,6 +4861,20 @@ typedef struct tagNMLINK LITEM item; } NMLINK, *PNMLINK; +/************************************************************************** + * Static control + */ + +#define WC_STATICA "Static" +#if defined(__GNUC__) +# define WC_STATICW (const WCHAR []){ 'S','t','a','t','i','c',0 } +#elif defined(_MSC_VER) +# define WC_STATICW L"Static" +#else +static const WCHAR WC_STATICW[] = { 'S','t','a','t','i','c',0 }; +#endif +#define WC_STATIC WINELIB_NAME_AW(WC_STATIC) + #ifdef __cplusplus } #endif -- 2.11.4.GIT