diff options
Diffstat (limited to '')
-rw-r--r-- | src/conf.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/conf.h b/src/conf.h index ad7500225..a50273e6e 100644 --- a/src/conf.h +++ b/src/conf.h @@ -20,6 +20,7 @@ #define MPD_CONF_H #include <stdbool.h> +#include <glib.h> #define CONF_MUSIC_DIR "music_directory" #define CONF_PLAYLIST_DIR "playlist_directory" @@ -105,6 +106,8 @@ int getBoolBlockParam(ConfigParam *param, const char *name, int force); ConfigParam *newConfigParam(const char *value, int line); +void config_param_free(gpointer data, gpointer user_data); + void addBlockParam(ConfigParam * param, const char *name, const char *value, int line); #endif |