aboutsummaryrefslogtreecommitdiffstats
path: root/src/conf.h
diff options
context:
space:
mode:
authorWarren Dukes <warren.dukes@gmail.com>2004-10-27 22:40:59 +0000
committerWarren Dukes <warren.dukes@gmail.com>2004-10-27 22:40:59 +0000
commit6237195faba7064df2496d410d9a615471b65807 (patch)
tree37a7ac1de869f12091c9d345fe5ff3972b8729b6 /src/conf.h
parentc5310c33f54603d623b76fa5eb4f19edeb25be77 (diff)
downloadmpd-6237195faba7064df2496d410d9a615471b65807.tar.gz
mpd-6237195faba7064df2496d410d9a615471b65807.tar.xz
mpd-6237195faba7064df2496d410d9a615471b65807.zip
more config file rewrite actions happening
git-svn-id: https://svn.musicpd.org/mpd/branches/shank-rewrite-config@2364 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r--src/conf.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/conf.h b/src/conf.h
index eba5e47da..e3e1fb7b9 100644
--- a/src/conf.h
+++ b/src/conf.h
@@ -77,6 +77,10 @@ void readConf(char * file);
set _last_ to NULL to get first entry */
ConfigParam * getNextConfigParam(char * name, ConfigParam * last);
+#define getConfigParam(name) getNextConfigParam(name, NULL);
+
void registerConfigParam(char * name, int repeats, int block);
+BlockParam * getBlockParam(ConfigParam * param, char * name);
+
#endif