diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/delphi/m_clistint.inc | 1 | ||||
-rw-r--r-- | include/m_clist.h | 4 | ||||
-rw-r--r-- | include/m_clistint.h | 1 |
3 files changed, 2 insertions, 4 deletions
diff --git a/include/delphi/m_clistint.inc b/include/delphi/m_clistint.inc index 108163db8b..d5537c8b24 100644 --- a/include/delphi/m_clistint.inc +++ b/include/delphi/m_clistint.inc @@ -433,7 +433,6 @@ type pfnChangeContactIcon : procedure (hContact:TMCONTACT; iIcon:int; add:int); cdecl;
pfnLoadContactTree : procedure ; cdecl;
pfnCompareContacts : function (var contact1:TClcContact; var contact2:TClcContact):int; cdecl;
- pfnSortContacts : procedure ; cdecl;
pfnSetHideOffline : function (wParam:WPARAM; lParam:LPARAM):int; cdecl;
(* docking.c *)
diff --git a/include/m_clist.h b/include/m_clist.h index 0e78bea758..0446311678 100644 --- a/include/m_clist.h +++ b/include/m_clist.h @@ -510,8 +510,8 @@ __forceinline HANDLE Clist_CreateGroup(HANDLE hParent, LPCTSTR ptszGroupName) /////////////////////////////////////////////////////////////////////////////////////////
// determines the ordering of two contacts
-// wParam = (WPARAM)(HANDLE)hContact1
-// lParam = (LPARAM)(HANDLE)hContact2
+// wParam = (WPARAM)(MCONTACT)hContact1
+// lParam = (LPARAM)(MCONTACT)hContact2
// returns 0 if hContact1 is the same as hContact2
// returns +1 if hContact2 should be displayed after hContact1
// returns -1 if hContact1 should be displayed after hContact2
diff --git a/include/m_clistint.h b/include/m_clistint.h index fca285b7ad..420ddcae99 100644 --- a/include/m_clistint.h +++ b/include/m_clistint.h @@ -383,7 +383,6 @@ struct CLIST_INTERFACE void (*pfnChangeContactIcon)(MCONTACT hContact, int iIcon, int add);
void (*pfnLoadContactTree)(void);
int (*pfnCompareContacts)(const ClcContact *contact1, const ClcContact *contact2);
- void (*pfnSortContacts)(void);
int (*pfnSetHideOffline)(WPARAM wParam, LPARAM lParam);
/* docking.c */
|