> Why do all that? If XMLCh is not a typedef for wchar_t > on your platform just cast the string to wchar_t*. Or am > I missing some subtlety?
On some platforms wchar_t is a 32-bit integral, while on others it's a 16-bit integral, and there are very few platforms where wchar_t contains Unicode code points. That makes casting very dangerous, and not very portable. However, I don't think that really answers the original question, which was how to "print the elementnames and corresponding values in unicode again." Unfortunately, I'm not sure exactly what he means. On platforms that don't have native support for Unicode, you probably can't do it. On those that do, there's really nothing that needs to be done. Dave --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
