diff options
author | George Hazan <george.hazan@gmail.com> | 2014-01-18 17:25:28 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-01-18 17:25:28 +0000 |
commit | 593062caed4a856b47172ace150c7eefdac54de0 (patch) | |
tree | 98e952a666f9f5ccb8107abefe628948c44e18a8 /include | |
parent | 5ae171790b75db5510cc808199a51ae1dc227320 (diff) |
alternative user sorting support
git-svn-id: http://svn.miranda-ng.org/main/trunk@7733 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
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 da0b627819..b75f525f58 100644 --- a/include/m_chat_int.h +++ b/include/m_chat_int.h @@ -359,6 +359,7 @@ struct CHAT_MANAGER TCHAR* (*UM_FindUserAutoComplete)(USERINFO* pUserList, const TCHAR* pszOriginal, const TCHAR* pszCurrent);
BOOL (*UM_RemoveUser)(USERINFO** pUserList, const TCHAR *pszUID);
BOOL (*UM_RemoveAll)(USERINFO** ppUserList);
+ int (*UM_CompareItem)(USERINFO * u1, const TCHAR *pszNick, WORD wStatus);
LOGINFO* (*LM_AddEvent)(LOGINFO** ppLogListStart, LOGINFO** ppLogListEnd);
BOOL (*LM_TrimLog)(LOGINFO** ppLogListStart, LOGINFO** ppLogListEnd, int iCount);
|