aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJacki <jacki@thejackimonster.de>2024-02-01 22:34:20 +0100
committerJacki <jacki@thejackimonster.de>2024-02-01 22:34:20 +0100
commit48a024bc9e146a8bc861f9c58de65a769fdcaa40 (patch)
treeb985e2b4a0a50820d970caa94742007b4631ffe5 /include
parenta847b9eb6ee260eaa6f91916544ae3f94640e895 (diff)
downloadlibgnunetchat-48a024bc9e146a8bc861f9c58de65a769fdcaa40.tar.gz
libgnunetchat-48a024bc9e146a8bc861f9c58de65a769fdcaa40.zip
Add tag messages
Signed-off-by: Jacki <jacki@thejackimonster.de>
Diffstat (limited to 'include')
-rw-r--r--include/gnunet/gnunet_chat_lib.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/gnunet/gnunet_chat_lib.h b/include/gnunet/gnunet_chat_lib.h
index cf55456..0880c5b 100644
--- a/include/gnunet/gnunet_chat_lib.h
+++ b/include/gnunet/gnunet_chat_lib.h
@@ -74,7 +74,7 @@ enum GNUNET_CHAT_MessageKind
74 /** 74 /**
75 * The kind to inform that a context was updated. 75 * The kind to inform that a context was updated.
76 */ 76 */
77 GNUNET_CHAT_KIND_UPDATE = 4, /**< GNUNET_CHAT_KIND_UPDATE */ 77 GNUNET_CHAT_KIND_UPDATE = 4, /**< GNUNET_CHAT_KIND_UPDATE */
78 78
79 /** 79 /**
80 * The kind to inform that a contact has joined a chat. 80 * The kind to inform that a contact has joined a chat.
@@ -112,6 +112,11 @@ enum GNUNET_CHAT_MessageKind
112 GNUNET_CHAT_KIND_DELETION = 11, /**< GNUNET_CHAT_KIND_DELETION */ 112 GNUNET_CHAT_KIND_DELETION = 11, /**< GNUNET_CHAT_KIND_DELETION */
113 113
114 /** 114 /**
115 * The kind to tag a previous message.
116 */
117 GNUNET_CHAT_KIND_TAG = 12, /**< GNUNET_CHAT_KIND_TAG */
118
119 /**
115 * An unknown kind of message. 120 * An unknown kind of message.
116 */ 121 */
117 GNUNET_CHAT_KIND_UNKNOWN = 0 /**< GNUNET_CHAT_KIND_UNKNOWN */ 122 GNUNET_CHAT_KIND_UNKNOWN = 0 /**< GNUNET_CHAT_KIND_UNKNOWN */