From 2b47a2b8b4b27d4fbcee72d2d1f91403f03f5b32 Mon Sep 17 00:00:00 2001 From: "Dimitrie O. Paun" Date: Sat, 30 Nov 2002 19:14:23 +0000 Subject: [PATCH] Add a way to tell msvcrt to define wchar_t. --- include/msvcrt/stddef.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/msvcrt/stddef.h b/include/msvcrt/stddef.h index ea8516bbb7b..c080da6a65b 100644 --- a/include/msvcrt/stddef.h +++ b/include/msvcrt/stddef.h @@ -32,6 +32,9 @@ typedef unsigned int MSVCRT(size_t); #endif /* Best to leave this one alone: wchar_t */ +#ifdef WINE_DEFINE_WCHAR_T +typedef unsigned short wchar_t; +#endif #define offsetof(s,m) (size_t)&(((s*)NULL)->m)