#ifndef _WALLS_CONF_H_ #define _WALLS_CONF_H_ #include #include struct walls_config_t { GdkInterpType interp_type; gint max_preload; }; extern struct walls_config_t config; void conf_open(); void conf_close(); gint conf_get_int(const gchar*, const gchar*, gint); void conf_load(); void conf_save(); extern GKeyFile *keyfile; #endif