VC7 will treat wchar_t as a seperate type if the compile switch 'Zc:wchar_t'
is used.  It also defines the symbol _WCHAR_T_DEFINED if the switch is used.
Does it make sense therefore to change VCPPDEFS.CPP line 142 from

typedef wchar_t XMLCh;

to

#ifdef _WCHAR_T_DEFINED
        typedef wchar_t XMLCh;
#else
        typedef unsigned short  XMLCh;
#endif

?

Tom Walpole


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to