did visual c++ 6.0 support unicode?

后端 未结 1 1946
谎友^
谎友^ 2021-01-23 12:19

i must migrate a c++ 6.0 project to visual c++ 2010 project.First, i must convert prj to unicode ,then convert to vs 2010.I confuse that did visual c++ 6.0 support unicode ?how

相关标签:
1条回答
  • 2021-01-23 12:59

    Yes, it supported Unicode exactly as the most recent version does. Setting the Unicode flag in your project produces a #define of the _UNICODE constant, which changes the names of the Windows API functions and changes CString to use wchar_t instead of char.

    0 讨论(0)
提交回复
热议问题