1
2#ifndef __CONFFILE_H__
3#define __CONFFILE_H__
4
5#include <sys/types.h>
6
7#include <confuse.h>
8
9#define CONFFILE   CONFDIR "/forked-daapd.conf"
10
11extern cfg_t *cfg;
12extern uint64_t libhash;
13extern uid_t runas_uid;
14extern gid_t runas_gid;
15
16int
17conffile_load(char *file);
18
19void
20conffile_unload(void);
21
22#endif /* !__CONFFILE_H__ */
23