The IsTextUnicode function determines whether a buffer probably contains a form of Unicode text. The function uses various statistical and deterministic methods to make its determination, under the control of flags passed via lpi. When the function returns, the results of such tests are reported via lpi. If all specified tests are passed, the function returns a nonzero value; otherwise, it returns zero.
DWORD IsTextUnicode(
CONST LPVOID lpBuffer, |
// pointer to an input buffer to be examined |
int cb, |
// the size in bytes of the input buffer |
LPINT lpi |
// pointer to flags that condition text examination and receive results |
); |
If lpi is NULL, the function uses all available tests to determine whether the data in the buffer is probably Unicode text.
Here are the constants used with *lpi’s bit flags:
Value |
Meaning |
IS_TEXT_UNICODE_ASCII16 |
The text is Unicode, and contains nothing but zero-extended ASCII values/characters. |
IS_TEXT_UNICODE_REVERSE_ASCII16 |
Same as the preceding, except that the Unicode text is byte-reversed. |
IS_TEXT_UNICODE_STATISTICS |
The text is probably Unicode, with the determination made by applying statistical analysis. Absolute certainty is not guaranteed. See the note in the following Remarks section. |
IS_TEXT_UNICODE_REVERSE_STATISTICS |
Same as the preceding, except that the probably-Unicode text is byte-reversed. |
IS_TEXT_UNICODE_CONTROLS |
The text contains Unicode representations of one or more of these non-printing characters: RETURN, LINEFEED, SPACE, CJK_SPACE, TAB. |
IS_TEXT_UNICODE_REVERSE_CONTROLS |
Same as the preceding, except that the Unicode characters are byte-reversed. |
IS_TEXT_UNICODE_BUFFER_TOO_SMALL |
There are too few characters in the buffer for meaningful analysis (fewer than two bytes). |
IS_TEXT_UNICODE_SIGNATURE |
The text contains the Unicode byte-order mark (BOM) 0xFEFF as its first character. |
IS_TEXT_UNICODE_REVERSE_SIGNATURE |
The text contains the Unicode byte-reversed byte-order mark (Reverse BOM) 0xFFFE as its first character. |
IS_TEXT_UNICODE_ILLEGAL_CHARS |
The text contains one of these Unicode-illegal characters: embedded Reverse BOM, UNICODE_NUL, CRLF (packed into one WORD), or 0xFFFF. |
IS_TEXT_UNICODE_ODD_LENGTH |
The number of characters in the string is odd. A string of odd length cannot (by definition) be Unicode text. |
IS_TEXT_UNICODE_NULL_BYTES |
The text contains null bytes, which indicate non-ASCII text. |
IS_TEXT_UNICODE_UNICODE_MASK |
This flag constant is a combination of IS_TEXT_UNICODE_ASCII16, IS_TEXT_UNICODE_STATISTICS, IS_TEXT_UNICODE_CONTROLS, IS_TEXT_UNICODE_SIGNATURE. |
IS_TEXT_UNICODE_REVERSE_MASK |
This flag constant is a combination of IS_TEXT_UNICODE_REVERSE_ASCII16, IS_TEXT_UNICODE_REVERSE_STATISTICS, IS_TEXT_UNICODE_REVERSE_CONTROLS, IS_TEXT_UNICODE_REVERSE_SIGNATURE. |
IS_TEXT_UNICODE_NOT_UNICODE_MASK |
This flag constant is a combination of IS_TEXT_UNICODE_ILLEGAL_CHARS, IS_TEXT_UNICODE_ODD_LENGTH, and two currently unused bit flags. |
IS_TEXT_UNICODE_NOT_ASCII_MASK |
This flag constant is a combination of IS_TEXT_UNICODE_NULL_BYTES and three currently unused bit flags. |
The function returns nonzero if the data in the buffer passes the specified tests.
The function returns zero if the data in the buffer does not pass the specified tests.
In either case, the int pointed to by lpi contains the results of the specific tests the function applied to make its determination.
As noted in the preceding table of flag constants, the IS_TEXT_UNICODE_STATISTICS and IS_TEXT_UNICODE_REVERSE_STATISTICS tests use statistical analysis. These tests are not foolproof. The statistical tests assume certain amounts of variation between low and high bytes in a string, and some ASCII strings can slip through. For example, if lpBuffer points to the ASCII string 0x41, 0x0A, 0x0D, 0x1D (A\n\r^Z), the string passes the IS_TEXT_UNICODE_STATISTICS test, though failure would be preferable.
file: /Techref/os/win/api/win32/func/src/f52_7.htm, 8KB, , updated: 2000/4/7 11:19, local time: 2024/11/4 20:16,
3.142.54.202:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://massmind.org/techref/os/win/api/win32/func/src/f52_7.htm"> IsTextUnicode</A> |
Did you find what you needed? |
Welcome to massmind.org! |
Welcome to massmind.org! |
.