Reputation: 33714
So project is Multi-byte by design. Recode full project to Unicode is to big work :(
So how can I use UTF-8 on my dialogs ? I've got this :
Upvotes: 0
Views: 209
Reputation: 2181
You can try to use MultiByteToWideChar with UTF8 code page. But, since I'm not sure how you pass ??? texts to the dialog, this might not be a solution. Similarly, if you try to pass UTF8 string to where MultiByte expected, you can try WideCharToMultiByte with UTF8 code page.
Upvotes: 1