diff options
author | George Hazan <george.hazan@gmail.com> | 2025-05-08 18:10:13 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2025-05-08 18:10:13 +0300 |
commit | d8048bb134651c70b3f12d5ee0e0199a8248645e (patch) | |
tree | df4f1847096e850e04a3ea03bdffc7c457fbb5ab /include/m_clistint.h | |
parent | e9b966f99c7b7ca88760c56b394ad261e144c23c (diff) |
for #5010 - inherited visibility for contacts' groups
Diffstat (limited to 'include/m_clistint.h')
-rw-r--r-- | include/m_clistint.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/include/m_clistint.h b/include/m_clistint.h index 48745779c6..886ca00211 100644 --- a/include/m_clistint.h +++ b/include/m_clistint.h @@ -204,12 +204,13 @@ struct MenuProto #define DRAGSTAGEF_MAYBERENAME 0x8000
#define DRAGSTAGEF_OUTSIDE 0x4000
-#define CONTACTF_ONLINE 1
-#define CONTACTF_INVISTO 2
-#define CONTACTF_VISTO 4
-#define CONTACTF_NOTONLIST 8
-#define CONTACTF_CHECKED 16
-#define CONTACTF_IDLE 32
+#define CONTACTF_ONLINE 0x01
+#define CONTACTF_INVISTO 0x02
+#define CONTACTF_VISTO 0x04
+#define CONTACTF_NOTONLIST 0x08
+#define CONTACTF_CHECKED 0x10
+#define CONTACTF_IDLE 0x20
+#define CONTACTF_HASMEMBERS 0x40
#define DROPTARGET_OUTSIDE 0
#define DROPTARGET_ONSELF 1
|