aboutsummaryrefslogtreecommitdiff
path: root/src/gnunet_chat_group.h
diff options
context:
space:
mode:
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_ */