I have built an MFC 4.2 MDI application using MSVC 6.0. The app creates an IDOM tree for every MFC Document loaded. It works well; I initially used normal ansi strings in MFC but since Xerces internally uses Unicode, I decided to convert my MFC app to Unicode as well.
 
I did this yesterday and could got rid of most XMLString::transcode calls which simplifies the code. It still works well, but I have one doubt because I am not (yet) fully acquaintained with Unicode:
 
Both character sets use 16 bit unicode, but do I need to call a conversion function? I somewhere read in a code comment that you can use L() conversion method, which I do by using _T. Could I run into troubles when I change to non latin charset languages?
 
Gert

Reply via email to