diff options
author | Max Kellermann <max@duempel.org> | 2009-01-25 17:37:45 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-25 17:37:45 +0100 |
commit | cb1f2e0c01f33f6a1d6b0dd3415e7b5d716309f6 (patch) | |
tree | 3ea7d024a9262ba561b97cd0491f66196a4b6deb /src/conf.h | |
parent | b6c3adcaaaee10721cb568e439ef7a1b41dc5564 (diff) | |
download | mpd-cb1f2e0c01f33f6a1d6b0dd3415e7b5d716309f6.tar.gz mpd-cb1f2e0c01f33f6a1d6b0dd3415e7b5d716309f6.tar.xz mpd-cb1f2e0c01f33f6a1d6b0dd3415e7b5d716309f6.zip |
conf: added config_add_param()
The function config_add_param() allows adding new configuration
parameters.
Diffstat (limited to 'src/conf.h')
-rw-r--r-- | src/conf.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/conf.h b/src/conf.h index 42ac6f228..5e191815f 100644 --- a/src/conf.h +++ b/src/conf.h @@ -91,6 +91,13 @@ void config_global_finish(void); void config_read_file(const char *file); +/** + * Adds a new configuration parameter. The name must be registered + * with registerConfigParam(). + */ +void +config_add_param(const char *name, struct config_param *param); + /* don't free the returned value set _last_ to NULL to get first entry */ struct config_param * |