Added WC_STATIC.
This commit is contained in:
parent
7dd1d21132
commit
1f72ebad5b
|
@ -4861,6 +4861,20 @@ typedef struct tagNMLINK
|
||||||
LITEM item;
|
LITEM item;
|
||||||
} NMLINK, *PNMLINK;
|
} 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
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue