aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTheJackiMonster <thejackimonster@gmail.com>2021-12-19 02:30:27 +0100
committerTheJackiMonster <thejackimonster@gmail.com>2021-12-19 02:30:27 +0100
commit9cb19e10c1912fa3140098e86763ecd042997d03 (patch)
tree8ae6334a78ad96bc9d5f6b87ca0bdba7cae849ee /include
parent6bbc30ef71cf23267937a73e34e185410ed73a10 (diff)
downloadlibgnunetchat-9cb19e10c1912fa3140098e86763ecd042997d03.tar.gz
libgnunetchat-9cb19e10c1912fa3140098e86763ecd042997d03.zip
Fixed updating room and loading groups
Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
Diffstat (limited to 'include')
-rw-r--r--include/gnunet_chat_lib.h19
1 files changed, 12 insertions, 7 deletions
diff --git a/include/gnunet_chat_lib.h b/include/gnunet_chat_lib.h
index 2eec1d6..aa9b456 100644
--- a/include/gnunet_chat_lib.h
+++ b/include/gnunet_chat_lib.h
@@ -55,39 +55,44 @@ enum GNUNET_CHAT_MessageKind
55 GNUNET_CHAT_KIND_LOGIN = 2, /**< GNUNET_CHAT_KIND_LOGIN */ 55 GNUNET_CHAT_KIND_LOGIN = 2, /**< GNUNET_CHAT_KIND_LOGIN */
56 56
57 /** 57 /**
58 * The kind to inform that a context was updated.
59 */
60 GNUNET_CHAT_KIND_UPDATE = 3, /**< GNUNET_CHAT_KIND_UPDATE */
61
62 /**
58 * The kind to inform that a contact has joined a chat. 63 * The kind to inform that a contact has joined a chat.
59 */ 64 */
60 GNUNET_CHAT_KIND_JOIN = 3, /**< GNUNET_CHAT_KIND_JOIN */ 65 GNUNET_CHAT_KIND_JOIN = 4, /**< GNUNET_CHAT_KIND_JOIN */
61 66
62 /** 67 /**
63 * The kind to inform that a contact has left a chat. 68 * The kind to inform that a contact has left a chat.
64 */ 69 */
65 GNUNET_CHAT_KIND_LEAVE = 4, /**< GNUNET_CHAT_KIND_LEAVE */ 70 GNUNET_CHAT_KIND_LEAVE = 5, /**< GNUNET_CHAT_KIND_LEAVE */
66 71
67 /** 72 /**
68 * The kind to inform that a contact has changed. 73 * The kind to inform that a contact has changed.
69 */ 74 */
70 GNUNET_CHAT_KIND_CONTACT = 5, /**< GNUNET_CHAT_KIND_CONTACT */ 75 GNUNET_CHAT_KIND_CONTACT = 6, /**< GNUNET_CHAT_KIND_CONTACT */
71 76
72 /** 77 /**
73 * The kind to describe an invitation to a different chat. 78 * The kind to describe an invitation to a different chat.
74 */ 79 */
75 GNUNET_CHAT_KIND_INVITATION = 6, /**< GNUNET_CHAT_KIND_INVITATION */ 80 GNUNET_CHAT_KIND_INVITATION = 7, /**< GNUNET_CHAT_KIND_INVITATION */
76 81
77 /** 82 /**
78 * The kind to describe a text message. 83 * The kind to describe a text message.
79 */ 84 */
80 GNUNET_CHAT_KIND_TEXT = 7, /**< GNUNET_CHAT_KIND_TEXT */ 85 GNUNET_CHAT_KIND_TEXT = 8, /**< GNUNET_CHAT_KIND_TEXT */
81 86
82 /** 87 /**
83 * The kind to describe a shared file. 88 * The kind to describe a shared file.
84 */ 89 */
85 GNUNET_CHAT_KIND_FILE = 8, /**< GNUNET_CHAT_KIND_FILE */ 90 GNUNET_CHAT_KIND_FILE = 9, /**< GNUNET_CHAT_KIND_FILE */
86 91
87 /** 92 /**
88 * The kind to inform about a deletion of a previous message. 93 * The kind to inform about a deletion of a previous message.
89 */ 94 */
90 GNUNET_CHAT_KIND_DELETION = 9, /**< GNUNET_CHAT_KIND_DELETION */ 95 GNUNET_CHAT_KIND_DELETION = 10, /**< GNUNET_CHAT_KIND_DELETION */
91 96
92 /** 97 /**
93 * An unknown kind of message. 98 * An unknown kind of message.