LPTSTR CharNext(lpszCurrentChar) | |||||
LPCTSTR lpszCurrentChar; | /* address of current character | */ |
The CharNext function moves to the next character in a string.
lpszCurrentChar
Points to a character in a null-terminated string.
The return value points to the next character in the string, or to the null character at the end of the string.
The CharNext function may be used as either a wide-character function (where text arguments must use Unicode) or an ANSI function (where text arguments must use characters from the Windows 3.x character set installed).
CharPrev