aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTheJackiMonster <thejackimonster@gmail.com>2022-03-19 17:25:29 +0100
committerTheJackiMonster <thejackimonster@gmail.com>2022-03-20 14:13:19 +0100
commit69176480c5ff9faad872d2aad68a5780c2f364b5 (patch)
tree6006348102c230e5b14e6d2418a8f0b01612a111 /include
parentae0d27195aacfe0a5695218c42580d1b37a1c42b (diff)
downloadlibgnunetchat-69176480c5ff9faad872d2aad68a5780c2f364b5.tar.gz
libgnunetchat-69176480c5ff9faad872d2aad68a5780c2f364b5.zip
Add private messages as whispering
Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
Diffstat (limited to 'include')
-rw-r--r--include/gnunet_chat_lib.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/gnunet_chat_lib.h b/include/gnunet_chat_lib.h
index 91cd9b6..6610f59 100644
--- a/include/gnunet_chat_lib.h
+++ b/include/gnunet_chat_lib.h
@@ -97,9 +97,14 @@ enum GNUNET_CHAT_MessageKind
97 GNUNET_CHAT_KIND_FILE = 10, /**< GNUNET_CHAT_KIND_FILE */ 97 GNUNET_CHAT_KIND_FILE = 10, /**< GNUNET_CHAT_KIND_FILE */
98 98
99 /** 99 /**
100 * The kind to describe a whispered message.
101 */
102 GNUNET_CHAT_KIND_WHISPER = 11, /**< GNUNET_CHAT_KIND_WHISPER */
103
104 /**
100 * The kind to inform about a deletion of a previous message. 105 * The kind to inform about a deletion of a previous message.
101 */ 106 */
102 GNUNET_CHAT_KIND_DELETION = 11, /**< GNUNET_CHAT_KIND_DELETION */ 107 GNUNET_CHAT_KIND_DELETION = 12, /**< GNUNET_CHAT_KIND_DELETION */
103 108
104 /** 109 /**
105 * An unknown kind of message. 110 * An unknown kind of message.