diff options
author | George Hazan <ghazan@miranda.im> | 2018-04-04 21:07:46 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-04-04 21:07:46 +0300 |
commit | d4b6de0fb4ca58063eb2f424c77e74e703022b63 (patch) | |
tree | 831c18be8048b34ddacf132c1bb204e92cd9cb92 /include/m_clist.h | |
parent | 53156bdc6edde511dbdf5e999756cd80d0a97e13 (diff) |
static function CLIST_INTERFACE::pfnGetContactIcon exported as Clist_GetContactIcon (history++ to be recompiled)
Diffstat (limited to 'include/m_clist.h')
-rw-r--r-- | include/m_clist.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/m_clist.h b/include/m_clist.h index a35d4680e1..43d67477bd 100644 --- a/include/m_clist.h +++ b/include/m_clist.h @@ -450,11 +450,16 @@ EXTERN_C MIR_APP_DLL(HMENU) Clist_GroupBuildMenu(void); EXTERN_C MIR_APP_DLL(void) Clist_EndRebuild(void);
/////////////////////////////////////////////////////////////////////////////////////////
-// do the message processing associated with double clicking a contact
+// does the message processing associated with double clicking a contact
EXTERN_C MIR_APP_DLL(void) Clist_ContactDoubleClicked(MCONTACT hContact);
/////////////////////////////////////////////////////////////////////////////////////////
+// returns the icon's index of specified contact in the internal image list or -1
+
+EXTERN_C MIR_APP_DLL(int) Clist_GetContactIcon(MCONTACT hContact);
+
+/////////////////////////////////////////////////////////////////////////////////////////
// change the group a contact belongs to
// returns 0 on success, nonzero on failure
// use hGroup = NULL to put the contact in no group
|