diff options
author | George Hazan <george.hazan@gmail.com> | 2012-07-27 07:02:45 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-07-27 07:02:45 +0000 |
commit | 1718ecd06e6bb305385e5dea79c5649af6e9470a (patch) | |
tree | 9a9e7fb3f1243d73765d17f33740518897f1c9b1 /include | |
parent | 94e5f742581f4b670cdb6ca09c18c86ce05629a9 (diff) |
Utf8CheckString moved from dbtool to mir_core
git-svn-id: http://svn.miranda-ng.org/main/trunk@1207 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include')
-rw-r--r-- | include/m_core.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/m_core.h b/include/m_core.h index 249aca42aa..e0534750be 100644 --- a/include/m_core.h +++ b/include/m_core.h @@ -497,9 +497,10 @@ MIR_CORE_DLL(char*) Utf8Encode(const char* str); MIR_CORE_DLL(char*) Utf8EncodeCP(const char* src, int codepage);
MIR_CORE_DLL(char*) Utf8EncodeW(const wchar_t* str);
-
MIR_CORE_DLL(int) Ucs2toUtf8Len(const wchar_t *src);
+MIR_CORE_DLL(BOOL) Utf8CheckString(const char* str);
+
#define Utf8DecodeT Utf8DecodeW
#define Utf8EncodeT Utf8EncodeW
|