aboutsummaryrefslogtreecommitdiff
path: root/src/gnunet_chat_group.h
blob: 0ea19f5438617419321c06f6ba01a2fdada1cfaa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 * @author Tobias Frisch
 * @file gnunet_chat_group.h
 */

#ifndef GNUNET_CHAT_GROUP_H_
#define GNUNET_CHAT_GROUP_H_

#include "gnunet_chat_context.h"

struct GNUNET_CHAT_Group
{
  struct GNUNET_CHAT_Handle *handle;
  struct GNUNET_CHAT_Context *context;

  char *name;
};

struct GNUNET_CHAT_Group*
group_create(struct GNUNET_CHAT_Handle *handle);

void
group_destroy(struct GNUNET_CHAT_Group* group);

#endif /* GNUNET_CHAT_GROUP_H_ */