I have a program in which I have been printing normal ASCII strings on screen using TextOut()
. I now want to add the capability of printing out Shift-JIS encoded strings. Can I somehow tell TextOut()
that I want to print a Shift-JIS string or do I have to use another function altogether? The documentation for TextOut seems to make no mention of encoding.
FYI: My program is currently compiled with MS visual studio 2015 and the "Character Set" is set to "Use Multi-Byte Character Set".