aboutsummaryrefslogtreecommitdiff
path: root/src/gnunet_chat_group.h
diff options
context:
space:
mode:
authorTheJackiMonster <thejackimonster@gmail.com>2021-06-06 21:38:20 +0200
committerTheJackiMonster <thejackimonster@gmail.com>2021-06-06 21:38:20 +0200
commit14c459bc9b1305cdb1451621492c5da40366f1ee (patch)
tree56ee5139b7e2ef1b86407afb899d3df8f7fdb009 /src/gnunet_chat_group.h
downloadlibgnunetchat-14c459bc9b1305cdb1451621492c5da40366f1ee.tar.gz
libgnunetchat-14c459bc9b1305cdb1451621492c5da40366f1ee.zip
Started basic architecture
Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
Diffstat (limited to 'src/gnunet_chat_group.h')
-rw-r--r--src/gnunet_chat_group.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/gnunet_chat_group.h b/src/gnunet_chat_group.h
new file mode 100644
index 0000000..0ea19f5
--- /dev/null
+++ b/src/gnunet_chat_group.h
@@ -0,0 +1,25 @@
1/*
2 * @author Tobias Frisch
3 * @file gnunet_chat_group.h
4 */
5
6#ifndef GNUNET_CHAT_GROUP_H_
7#define GNUNET_CHAT_GROUP_H_
8
9#include "gnunet_chat_context.h"
10
11struct GNUNET_CHAT_Group
12{
13 struct GNUNET_CHAT_Handle *handle;
14 struct GNUNET_CHAT_Context *context;
15
16 char *name;
17};
18
19struct GNUNET_CHAT_Group*
20group_create(struct GNUNET_CHAT_Handle *handle);
21
22void
23group_destroy(struct GNUNET_CHAT_Group* group);
24
25#endif /* GNUNET_CHAT_GROUP_H_ */