mirror of
https://github.com/owntone/owntone-server.git
synced 2024-12-28 08:05:56 -05:00
19 lines
254 B
C
19 lines
254 B
C
|
|
#ifndef __CONFFILE_H__
|
|
#define __CONFFILE_H__
|
|
|
|
#include <confuse.h>
|
|
|
|
#define CONFFILE CONFDIR "/forked-daapd.conf"
|
|
|
|
extern cfg_t *cfg;
|
|
extern uint64_t libhash;
|
|
|
|
int
|
|
conffile_load(char *file);
|
|
|
|
void
|
|
conffile_unload(void);
|
|
|
|
#endif /* !__CONFFILE_H__ */
|