summaryrefslogtreecommitdiff
path: root/protocols/Weather/weather_conv.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/Weather/weather_conv.cpp')
-rw-r--r--protocols/Weather/weather_conv.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/protocols/Weather/weather_conv.cpp b/protocols/Weather/weather_conv.cpp
index 1cf003e8e2..2bad50f0fa 100644
--- a/protocols/Weather/weather_conv.cpp
+++ b/protocols/Weather/weather_conv.cpp
@@ -642,21 +642,3 @@ TCHAR *GetError(int code)
}
return str;
}
-
-LPWSTR ConvToUnicode(LPCSTR str2)
-{
- const size_t nLength = MultiByteToWideChar(lpcp, 0, str2, -1, NULL, 0);
- LPWSTR res = ( LPWSTR )mir_alloc(sizeof(WCHAR)*nLength);
- MultiByteToWideChar(lpcp, 0, str2, -1, res, (int)nLength);
- return res;
-}
-
-unsigned lpcp;
-
-void InitUniConv(void)
-{
- lpcp = (unsigned)CallService(MS_LANGPACK_GETCODEPAGE, 0, 0);
- if (lpcp == CALLSERVICE_NOTFOUND || lpcp == GetUserDefaultLangID())
- lpcp = CP_ACP;
-}
-