diff options
author | George Hazan <george.hazan@gmail.com> | 2024-11-14 17:24:43 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-11-14 17:24:43 +0300 |
commit | efc8291dafe68435480bb5dd378cf26ee62d042f (patch) | |
tree | e8242a4090dd360c0fae964759237c93017966c5 /include | |
parent | e76a4df48aa890a0e466c10f8bf6c40438ffb92a (diff) |
fixes #4641 (Telegram: удаление с сервера чужих сообщений групчата, если пользователь Миранды не модератор/владелец)
Diffstat (limited to 'include')
-rw-r--r-- | include/m_core.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/m_core.h b/include/m_core.h index 71fad47b41..3d78994229 100644 --- a/include/m_core.h +++ b/include/m_core.h @@ -319,7 +319,7 @@ MIR_CORE_DLL(int) mir_vsnwprintf(_Pre_notnull_ _Always_(_Post_z_) wchar_t *bu struct PROTO_INTERFACE;
-MIR_APP_DLL(bool) Proto_CanDeleteHistory(const char *szModule, MCONTACT hContact);
+MIR_APP_DLL(bool) Proto_CanDeleteHistory(const char *szModule, MCONTACT hContact, bool bIncoming = false);
MIR_APP_DLL(INT_PTR) ProtoBroadcastAck(const char *szModule, MCONTACT hContact, int type, int result, HANDLE hProcess, LPARAM lParam = 0);
MIR_APP_DLL(void) ProtoBroadcastAsync(const char *szModule, MCONTACT hContact, int type, int result, HANDLE hProcess, LPARAM lParam = 0);
|