Added WC_STATIC.

This commit is contained in:
Frank Richter 2005-07-12 17:55:54 +00:00 committed by Alexandre Julliard
parent 7dd1d21132
commit 1f72ebad5b
1 changed files with 14 additions and 0 deletions

View File

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