nguyen
nguyen

Reputation: 171

did visual c++ 6.0 support unicode?

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

Upvotes: 1

Views: 1725

Answers (1)

Mark Ransom
Mark Ransom

Reputation: 308520

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.

Upvotes: 5

Related Questions