diff options
author | George Hazan <ghazan@miranda.im> | 2018-04-27 14:11:18 +0200 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-04-27 14:11:18 +0200 |
commit | 6b91af6235cbd8643c7c63e07ceb23f1b13e8a8f (patch) | |
tree | a3d219c1412c164751029c8fbc1e024f5cef7c1e /include/m_database.h | |
parent | 1a6f765baa14c490594bcf255e265e5add1aeec9 (diff) |
implementation of #1308
Diffstat (limited to 'include/m_database.h')
-rw-r--r-- | include/m_database.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/m_database.h b/include/m_database.h index c7e68e0d50..651a0a3b0a 100644 --- a/include/m_database.h +++ b/include/m_database.h @@ -400,9 +400,13 @@ EXTERN_C MIR_CORE_DLL(INT_PTR) db_get(MCONTACT hContact, LPCSTR szModule, LPCST EXTERN_C MIR_CORE_DLL(int) db_get_b(MCONTACT hContact, LPCSTR szModule, LPCSTR szSetting, int errorValue = 0);
EXTERN_C MIR_CORE_DLL(int) db_get_w(MCONTACT hContact, LPCSTR szModule, LPCSTR szSetting, int errorValue = 0);
EXTERN_C MIR_CORE_DLL(DWORD) db_get_dw(MCONTACT hContact, LPCSTR szModule, LPCSTR szSetting, DWORD errorValue = 0);
+
EXTERN_C MIR_CORE_DLL(char*) db_get_sa(MCONTACT hContact, LPCSTR szModule, LPCSTR szSetting);
EXTERN_C MIR_CORE_DLL(wchar_t*) db_get_wsa(MCONTACT hContact, LPCSTR szModule, LPCSTR szSetting);
+MIR_CORE_DLL(CMStringA) db_get_sm(MCONTACT hContact, LPCSTR szModule, LPCSTR szSetting);
+MIR_CORE_DLL(CMStringW) db_get_wsm(MCONTACT hContact, LPCSTR szModule, LPCSTR szSetting);
+
EXTERN_C MIR_CORE_DLL(int) db_get_static(MCONTACT hContact, LPCSTR szModule, LPCSTR szSetting, char *pDest, int cbDest);
EXTERN_C MIR_CORE_DLL(int) db_get_static_utf(MCONTACT hContact, LPCSTR szModule, LPCSTR szSetting, char *pDest, int cbDest);
EXTERN_C MIR_CORE_DLL(int) db_get_wstatic(MCONTACT hContact, LPCSTR szModule, LPCSTR szSetting, wchar_t *pDest, int cbDest);
|