aboutsummaryrefslogtreecommitdiff
path: root/include/npassd/collection.h
blob: 40c100f6eef568213d573a4ef0b87def18143887 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <linux/limits.h>
#include <sqlite3.h>
#include <sys/queue.h>
#include <systemd/sd-bus.h>

struct collection {
	sd_bus_slot *slot;
	char *root, *path;

	int locked;
	char *alias, *label;
	uint64_t created, modified;

	LIST_ENTRY(collection) dlist;
};

LIST_HEAD(collection_dlist, collection);

void collection_free(struct collection *c);
int collection_new(sd_bus *bus, struct sqlite3 *db, struct collection **p,
		   const char *alias, const char *label, const char *root);
int collection_root_make(const char *label, const char *alias, char **root);