diff options
author | George Hazan <ghazan@miranda.im> | 2023-02-22 17:02:52 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2023-02-22 17:02:52 +0300 |
commit | a14e6388fd3266c6815a4ebaad3a942896c3e80a (patch) | |
tree | 84147df60f4be482f3c5074ce1f8adcdbf46b4a2 /include | |
parent | 061a20a9cf305cf5fabe2a35b7d8a86eb8d6b154 (diff) |
if one needs to remove a chat's contact, just remove it and don't fuck my brain
Diffstat (limited to 'include')
-rw-r--r-- | include/m_chat.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/m_chat.h b/include/m_chat.h index 5cb316087a..2ac337e3cd 100644 --- a/include/m_chat.h +++ b/include/m_chat.h @@ -420,11 +420,11 @@ MIR_APP_DLL(int) Chat_SetStatusEx(SESSION_INFO *si, int flags, const wchar_t *ws #define WINDOW_CLEARLOG 6 // clear the log of the room window
MIR_APP_DLL(int) Chat_Control(SESSION_INFO *si, int command);
-MIR_APP_DLL(int) Chat_Terminate(SESSION_INFO *si, bool bRemoveContact = false);
+MIR_APP_DLL(int) Chat_Terminate(SESSION_INFO *si);
// these functions broadcast a command to all windows of specified szModule
MIR_APP_DLL(int) Chat_Control(const char *szModule, int command);
-MIR_APP_DLL(int) Chat_Terminate(const char *szModule, bool bRemoveContact = false);
+MIR_APP_DLL(int) Chat_Terminate(const char *szModule);
/////////////////////////////////////////////////////////////////////////////////////////
// Use this function to get information on different aspects of the sessions that are registered with Chat.
|