diff options
author | George Hazan <george.hazan@gmail.com> | 2016-09-01 10:56:58 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-09-01 10:56:58 +0000 |
commit | 95dccf315ba175eaf848fd6d85af6eb306a7482f (patch) | |
tree | 0e5d65712a914566cf76370c78ae256bd744218e /include | |
parent | 1fba79d0cd33719c33a431b0c6ecd4b169acd4d5 (diff) |
duplicate code removed
git-svn-id: http://svn.miranda-ng.org/main/trunk@17235 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include')
-rw-r--r-- | include/m_clist.h | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/include/m_clist.h b/include/m_clist.h index 3cde4222f9..8b54c0c4b0 100644 --- a/include/m_clist.h +++ b/include/m_clist.h @@ -319,7 +319,25 @@ typedef struct { // toggles the show/hide status of the contact list
// wParam = lParam = 0
// returns 0 on success, nonzero on failure
-#define MS_CLIST_SHOWHIDE "CList/ShowHide"
+#define MS_CLIST_SHOWHIDE "CList/ShowHide"
+
+/////////////////////////////////////////////////////////////////////////////////////////
+// toggles the use groups mode of the contact list
+// wParam = lParam = 0
+// returns new groups mode
+#define MS_CLIST_TOGGLEGROUPS "CList/ToggleGroups"
+
+/////////////////////////////////////////////////////////////////////////////////////////
+// toggles the empty groups display mode
+// wParam = lParam = 0
+// returns new empty groups mode
+#define MS_CLIST_TOGGLEEMPTYGROUPS "CList/ToggleEmptyGroups"
+
+/////////////////////////////////////////////////////////////////////////////////////////
+// toggles the hidden users display mode
+// wParam = lParam = 0
+// returns new hidden users mode
+#define MS_CLIST_TOGGLEHIDEOFFLINEROOT "CList/ToggleHideOfflineRoot"
/////////////////////////////////////////////////////////////////////////////////////////
// sent when the group get modified (created, renamed or deleted)
|