The information in this article applies to:
SUMMARYNeither the Win32 SDK tools or Visual C++ (VC++) 32-bit Edition tools support Unicode text. In fact, the C/C++ Language specification says that the source files are to be written in 7-bit ANSI. MORE INFORMATION
For example, language-specific resources cannot be specified in Unicode in
the .RC file because RC does not accept the Unicode text. Although the
message compiler has flags for Unicode, the flags are not implemented.
By default, the characters listed between the double quotation marks are ANSI characters and escape sequences are interpreted as byte escape sequences. If the string is preceded by the L prefix, the string is a wide-character string and escape sequences are interpreted as two-byte escape sequences that specify Unicode characters. If a double quotation mark is required in the text, you must include the double quotation mark twice or use the \" escape sequence.Another alternative is to use user-defined resources and include a binary (Unicode) file. Additional query words: 3.10 3.50
Keywords : |
Last Reviewed: January 14, 2000 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |