Add a way to tell msvcrt to define wchar_t.

This commit is contained in:
Dimitrie O. Paun 2002-11-30 19:14:23 +00:00 committed by Alexandre Julliard
parent 708c4b244f
commit 2b47a2b8b4

View file

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