diff options
Diffstat (limited to '')
-rw-r--r-- | src/conf.h | 4 |
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 |