diff options
author | George Hazan <george.hazan@gmail.com> | 2023-11-10 16:31:37 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-11-10 16:31:37 +0300 |
commit | 6b11c1df57c7e293df98fb4af0f8a7ed05cb850a (patch) | |
tree | cedc7aa3bc96a1e4e3f551860b18a55763d42187 /include | |
parent | 9446fe458391fccdc34c1a962254847b661bd04d (diff) |
fixes #3906 (UInfoEx: не переводятся интересы в профиле контакта)
Diffstat (limited to 'include')
-rw-r--r-- | include/delphi/m_core.inc | 2 | ||||
-rw-r--r-- | include/m_langpack.h | 7 |
2 files changed, 0 insertions, 9 deletions
diff --git a/include/delphi/m_core.inc b/include/delphi/m_core.inc index 438f4d2aec..140535b6a9 100644 --- a/include/delphi/m_core.inc +++ b/include/delphi/m_core.inc @@ -208,8 +208,6 @@ function Langpack_GetDefaultCodePage():int; stdcall; external CoreDLL name 'Langpack_GetDefaultCodePage';
function Langpack_GetDefaultLocale():int; stdcall;
external CoreDLL name 'Langpack_GetDefaultLocale';
-function Langpack_PcharToTchar(const pszStr:PAnsiChar):PWideChar; stdcall;
- external CoreDLL name 'Langpack_PcharToTchar';
function LoadLangPackModule():int; stdcall;
external CoreDLL name 'LoadLangPackModule';
diff --git a/include/m_langpack.h b/include/m_langpack.h index aff4601c43..10ad9bd182 100644 --- a/include/m_langpack.h +++ b/include/m_langpack.h @@ -88,13 +88,6 @@ EXTERN_C MIR_CORE_DLL(int) Langpack_GetDefaultCodePage(void); EXTERN_C MIR_CORE_DLL(int) Langpack_GetDefaultLocale(void);
/////////////////////////////////////////////////////////////////////////////////////////
-// returns the strdup/wcsdup of lparam according to the langpack
-// returns a string converted from char* to wchar_t* using the langpack codepage.
-// This string should be freed using mir_free() then
-
-EXTERN_C MIR_CORE_DLL(wchar_t*) Langpack_PcharToTchar(const char *pszStr);
-
-/////////////////////////////////////////////////////////////////////////////////////////
// reloads langpack
// wParam = 0 (ignored)
// lParam = (LPARAM)(wchar_t*)langpack file name or NULL to reload the current one
|