diff options
author | George Hazan <george.hazan@gmail.com> | 2023-11-29 22:55:29 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-11-29 22:55:29 +0300 |
commit | 170f3ffab20cd0cea6ccb9c4ff4420f2fdf1f603 (patch) | |
tree | e6755e77f8d3c7f78841765b6eb305dbff8c2b5c /include | |
parent | 234690422a029ae52ce24247b559428a4c08afc1 (diff) |
for #3985 - patch for basic groups
Diffstat (limited to 'include')
-rw-r--r-- | include/m_chat_int.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/m_chat_int.h b/include/m_chat_int.h index 66b0b2fdf9..ae50a4eab3 100644 --- a/include/m_chat_int.h +++ b/include/m_chat_int.h @@ -280,6 +280,7 @@ struct CHAT_MANAGER USERINFO* (*UM_AddUser)(SESSION_INFO *si, const wchar_t *pszUID, const wchar_t *pszNick, uint16_t wStatus);
USERINFO* (*UM_FindUser)(SESSION_INFO *si, const wchar_t *pszUID);
USERINFO* (*UM_GiveStatus)(SESSION_INFO *si, const wchar_t *pszUID, uint16_t status);
+ BOOL (*UM_RemoveAll)(SESSION_INFO *si);
USERINFO* (*UM_SetContactStatus)(SESSION_INFO *si, const wchar_t *pszUID, uint16_t status);
USERINFO* (*UM_TakeStatus)(SESSION_INFO *si, const wchar_t *pszUID, uint16_t status);
wchar_t* (*UM_FindUserAutoComplete)(SESSION_INFO *si, const wchar_t* pszOriginal, const wchar_t* pszCurrent);
|