diff options
author | George Hazan <ghazan@miranda.im> | 2018-11-21 21:39:58 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-11-21 21:39:58 +0300 |
commit | 025f4137a8d54ae30ace6291b0cee1ba44288c8e (patch) | |
tree | 545630246029ecd7c61fa6320959505415fc06be /include | |
parent | 286eb23094e65c80209cca5a029557e792010ec9 (diff) |
this code is so much faster
Diffstat (limited to 'include')
-rw-r--r-- | include/m_chat_int.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/m_chat_int.h b/include/m_chat_int.h index 8a4f054b0c..0eb552f93a 100644 --- a/include/m_chat_int.h +++ b/include/m_chat_int.h @@ -298,7 +298,7 @@ struct CHAT_MANAGER BOOL (*TM_RemoveAll)(STATUSINFO** pStatusList);
int (*UM_CompareItem)(const USERINFO *u1, const USERINFO *u2);
- USERINFO* (*UM_AddUser)(STATUSINFO *pStatusList, SESSION_INFO *si, const wchar_t *pszUID, const wchar_t *pszNick, WORD wStatus);
+ USERINFO* (*UM_AddUser)(SESSION_INFO *si, const wchar_t *pszUID, const wchar_t *pszNick, WORD wStatus);
USERINFO* (*UM_FindUser)(SESSION_INFO *si, const wchar_t *pszUID);
USERINFO* (*UM_FindUserFromIndex)(SESSION_INFO *si, int index);
USERINFO* (*UM_GiveStatus)(SESSION_INFO *si, const wchar_t *pszUID, WORD status);
|