diff options
author | George Hazan <ghazan@miranda.im> | 2019-06-27 21:23:35 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-06-27 21:23:35 +0300 |
commit | 44525f461757fc859616fda16820351b07238842 (patch) | |
tree | 117ad05514eed381fc13dcf8befcf0ff06023e57 /include/m_clist.h | |
parent | 810ed4dea67b54a18f6ec3f5273d2f8efe08708c (diff) |
manual access to CList/Group restricted
Diffstat (limited to 'include/m_clist.h')
-rw-r--r-- | include/m_clist.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/m_clist.h b/include/m_clist.h index 37751dc3fa..47a64f7c79 100644 --- a/include/m_clist.h +++ b/include/m_clist.h @@ -460,6 +460,17 @@ EXTERN_C MIR_APP_DLL(int) Clist_GroupMoveBefore(MGROUP hGroup, MGROUP hGroupBefo EXTERN_C MIR_APP_DLL(HMENU) Clist_GroupBuildMenu(void);
/////////////////////////////////////////////////////////////////////////////////////////
+// gets group name for a contact
+// might return NULL if a group isn't set
+
+EXTERN_C MIR_APP_DLL(wchar_t*) Clist_GetGroup(MCONTACT hContact);
+
+/////////////////////////////////////////////////////////////////////////////////////////
+// sets group name for a contact
+
+EXTERN_C MIR_APP_DLL(void) Clist_SetGroup(MCONTACT hContact, const wchar_t *pwszName);
+
+/////////////////////////////////////////////////////////////////////////////////////////
// end a rebuild of the contact list
EXTERN_C MIR_APP_DLL(void) Clist_EndRebuild(void);
|