diff options
author | nyamatongwe <unknown> | 2007-04-19 04:38:53 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2007-04-19 04:38:53 +0000 |
commit | 476e533e7277cfd122f3ca3472783831c9e47ca5 (patch) | |
tree | 1f7678e4a7fa68f9f761bd4650b9a84339841db8 /src/UniConversion.h | |
parent | 101ccc292a2a2623d6680e8f488f762bd5c9a091 (diff) | |
download | scintilla-mirror-476e533e7277cfd122f3ca3472783831c9e47ca5.tar.gz |
All Unicode planes supported, not just the Basic Multilingual Plane.
Diffstat (limited to 'src/UniConversion.h')
-rw-r--r-- | src/UniConversion.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/UniConversion.h b/src/UniConversion.h index bd1d7754d..fd420a688 100644 --- a/src/UniConversion.h +++ b/src/UniConversion.h @@ -6,7 +6,7 @@ // The License.txt file describes the conditions under which this software may be distributed. unsigned int UTF8Length(const wchar_t *uptr, unsigned int tlen); -void UTF8FromUCS2(const wchar_t *uptr, unsigned int tlen, char *putf, unsigned int len); -unsigned int UCS2Length(const char *s, unsigned int len); -unsigned int UCS2FromUTF8(const char *s, unsigned int len, wchar_t *tbuf, unsigned int tlen); +void UTF8FromUTF16(const wchar_t *uptr, unsigned int tlen, char *putf, unsigned int len); +unsigned int UTF16Length(const char *s, unsigned int len); +unsigned int UTF16FromUTF8(const char *s, unsigned int len, wchar_t *tbuf, unsigned int tlen); |