On Mon, 21 Jun 2004, Andre Stock wrote: > > Is it possible to change the typedef of XMLCh* to wchar_t*,so that i can > parse the unicode stream? If this is possible, where can i find the typedef > of XMLCh*?
Yes it is. This typedef is in the compiler/platform header files. But you may not want to do this, as wchar_t and XMLCh are incompatible on some platforms (ie. most any platform but Windows). That said, I've done this for a project I'm working on as a matter of convenience. I have "treat wchar_t as a built-in type" set in my project settings, and IIRC leaving it as a ushort broke something. Sean --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
