* Added the basic Chatter Box application.
[Silver.git] / libsilverconf / libsilverconf.h
blob18741d366588659c25609186955e9909ba730946
1 #ifndef LIBSILVERCONF_H
2 #define LIBSILVERCONF_H
4 struct Silver_Conf
6 const char *appname;
7 char *path;
8 };
10 int load_config(struct Silver_Conf *conf, const char *appname);
11 const char *get_config(struct Silver_Conf *conf, const char *section, const char *key, const char *default_value);
12 void delete_config(struct Silver_Conf *conf);
14 #endif // LIBSILVERCONF_H