blob: f0f7859757e9419fba3ff5fe832a4dc91db96371 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef _WALLS_CONF_H_
#define _WALLS_CONF_H_
#include <glib.h>
void conf_open();
void conf_close();
gint conf_get_int(const gchar*, const gchar*, gint);
extern GKeyFile *keyfile;
#endif
|