include: Avoid macro redefinition when wchar.h is included after stdint.h.
Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
644d00d540
commit
bd7132e312
|
@ -26,8 +26,10 @@ extern "C" {
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define WCHAR_MIN 0
|
#ifndef WCHAR_MIN /* also in stdint.h */
|
||||||
#define WCHAR_MAX ((wchar_t)-1)
|
#define WCHAR_MIN 0U
|
||||||
|
#define WCHAR_MAX 0xffffU
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef DECLSPEC_ALIGN
|
#ifndef DECLSPEC_ALIGN
|
||||||
# if defined(_MSC_VER) && (_MSC_VER >= 1300) && !defined(MIDL_PASS)
|
# if defined(_MSC_VER) && (_MSC_VER >= 1300) && !defined(MIDL_PASS)
|
||||||
|
|
Loading…
Reference in New Issue