diff options
author | George Hazan <ghazan@miranda.im> | 2017-01-16 18:19:15 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-01-16 18:19:15 +0300 |
commit | df51f338983ba85feffcbd2209100c6927dda8a5 (patch) | |
tree | 9f81c94034396b4c4e8496661b12b346798808cf /include/m_core.h | |
parent | c00f494c8165b9f2d9facc6488173502b19ca696 (diff) |
Utf8DecodeT/Utf8EncodeT macros considered useless and replaced with Utf8DecodeW/Utf8EncodeW
Diffstat (limited to 'include/m_core.h')
-rw-r--r-- | include/m_core.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/m_core.h b/include/m_core.h index d973a63da3..2f5073cf16 100644 --- a/include/m_core.h +++ b/include/m_core.h @@ -495,9 +495,6 @@ MIR_CORE_DLL(int) Ucs2toUtf8Len(const wchar_t *src); MIR_CORE_DLL(BOOL) Utf8CheckString(const char* str);
-#define Utf8DecodeT Utf8DecodeW
-#define Utf8EncodeT Utf8EncodeW
-
#define mir_utf8decode(A, B) Utf8Decode(A, B)
#define mir_utf8decodecp(A, B, C) Utf8DecodeCP(A, B, C)
#define mir_utf8decodeW(A) Utf8DecodeW(A)
|