UTF-8 Conversion
C / C++ / MFC
1
Posts
1
Posters
0
Views
1
Watching
-
Hi, I am using LIBXML from www.xmlsoft.org[^]. To supprt our application for Japanese platform, we are encoding the strings to UTF-8 and then putting it into XML. We were using unicode build for that. So by default the strings were 'WideChars'. But in non unicode build the strings are 1 byte char strings. My question is how do i encode the 1 byte char strings to uUTF-8 ?? I was using
MultiByteToWideChar / Widechatto
... for encoding. But in this case how do i go @ it ?? My understanding on support of internationlization is not so strong. Any focus on concepts / ideas / solution to above problems will be of great help. thanks and regards. :)