aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/bee.h
blob: b25f0e08cb48427ec902963f21d9c00afadbf0c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
typedef struct bee_ui
{
	void *data;
} bee_ui_t;

typedef struct bee
{
	struct set *set;
	
	GSList *users;
	GSList *accounts;
	
	//const bee_ui_funcs_t *ui;
	void *ui_data;
} bee_t;

bee_t *bee_new();
void bee_free( bee_t *b );