/*
 * rec_config.h
 *
 * Configuration load/save for recremote
 *
 * Header file
 *
 * Author: Dario Rodriguez dario@softhome.net
 * This program is licensed under the terms of the Affero GPL v1+
 */

#ifndef NEWSL_CONFIG_H
#define NEWSL_CONFIG_H

typedef struct recconfig {
	char *logfile;
} recconfig;

recconfig *recconfig_init(char *configfile);
void recconfig_free(recconfig *config);

int recconfig_exists(char *configfile);
int recconfig_write(char *configfile,char *logfile);

#endif