[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Convert an ansistring to a null-terminated array of Unicode characters.
Source position: ustringh.inc line 47
function StringToUnicodeChar( |
const Src: RawByteString; |
Dest: PUnicodeChar; |
DestSize: SizeInt |
):PUnicodeChar; |
StringToUnicodeChar converts the ansistring S to a unicodestring and places the result in Dest. The size of the memory location pointed to by Dest must be given in DestSize. If the result string is longer than the available size, the result string will be truncated.
The function always returns Dest.
No check is performed to see whether Dest points to a valid memory location.
|
Convert Unicode character to string |
|
|
Convert a memory buffer with Unicode characters to a unicodestring |