问题
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 to know it thanks
回答1:
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.
来源:https://stackoverflow.com/questions/10492690/did-visual-c-6-0-support-unicode