c++ - Unicode
- Denis Troshin (15/15) Oct 09 2004 Hello!
- Walter (4/19) Oct 10 2004 To embed unicode characters in strings, the only portable way to do it i...
Hello! --------------------------- #define UNICODE #define _UNICODE #include <tchar.h> #include <wchar.h> #include <windows.h> .. .. WCHAR txt[]=L"Hello"; --------------------------- Compiler generates incorrect unicode-string if I use any characters with codes > 0x7F Seems like compiler makes unicode-string just by expanding every byte of source ansi-string to word. It is ok only for english.
Oct 09 2004
"Denis Troshin" <weiv mail.ru> wrote in message news:ck9mtl$183n$1 digitaldaemon.com...Hello! --------------------------- #define UNICODE #define _UNICODE #include <tchar.h> #include <wchar.h> #include <windows.h> .. .. WCHAR txt[]=L"Hello"; --------------------------- Compiler generates incorrect unicode-string if I use any characters with codes > 0x7F Seems like compiler makes unicode-string just by expanding every byte of source ansi-string to word. It is ok only for english.To embed unicode characters in strings, the only portable way to do it is with \uxxxx.
Oct 10 2004