Check whether a Visual C++ 6.0 project did support unicode or not?
问题 I need to know if a Visual C++ 6.0 project supports Unicode or not. How can I check that? 回答1: If the project is compiled with Unicode support, then the preprocessor directive UNICODE (or _UNICODE ) will be defined. Testing to see if this is defined will give you your answer: #if defined(UNICODE) || defined(_UNICODE) // The project is compiled for Unicode #else // The project is NOT compiled for Unicode #endif You can also check this from within your project's settings. From the "Project"