just saving my changes

This commit is contained in:
Ron Pedde 2006-01-25 22:31:53 +00:00
parent a6f5be301c
commit 593bcda38f
2 changed files with 21 additions and 3 deletions

View File

@ -37,7 +37,8 @@
#include "daap.h"
/** Globals */
int ecode;
BAG_HANDLE config_main;
/**
* read a configfile into a bag
@ -46,11 +47,24 @@
* @returns TRUE if successful, FALSE otherwise
*/
int config_read(char *file) {
FILE *fin;
int err;
}
fin=fopen(file,"r");
if(!fin) {
ecode = errno;
return CONFIG_E_FOPEN;
}
int config_write(WS_CONNINFO *pwsc) {
if((err=bag_create(&config_main)) != BAG_E_SUCCESS) {
DPRINTF(E_LOG,L_CONF,"Error creating bag: %d\n",err);
return CONFIG_E_UNKNOWN;
}
fclose(fin);
return CONFIG_E_SUCCESS;
}
int config_close(void) {

View File

@ -22,6 +22,10 @@
#ifndef _CONFIG_H_
#define _CONFIG_H_
#define CONFIG_E_SUCCESS 0
#define CONFIG_E_FOPEN 1
#define CONFIG_E_UNKNOWN 2
extern int config_read(char *file);
extern int config_write(WS_CONNINFO *pwsc);
extern int config_close(void);