diff options
author | Viliam Mateicka <viliam.mateicka@gmail.com> | 2009-01-10 21:33:38 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-11 17:13:01 +0100 |
commit | d357f585426d31b2b7e8efd3b92163b7b4f3c3f6 (patch) | |
tree | ab719858bf7ce0f6cd26ae077762c721f4145b4c /src/conf.h | |
parent | 983822ea525f0d48c8329513c846fe183bd0353f (diff) | |
download | mpd-d357f585426d31b2b7e8efd3b92163b7b4f3c3f6.tar.gz mpd-d357f585426d31b2b7e8efd3b92163b7b4f3c3f6.tar.xz mpd-d357f585426d31b2b7e8efd3b92163b7b4f3c3f6.zip |
removing mixer_reconfigure memmory leak, fixing configure of alsa and oss mixer (passing parameters)
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 |