diff options
Diffstat (limited to 'src/conf.h')
-rw-r--r-- | src/conf.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/conf.h b/src/conf.h index 9593501b0..1c6e464c4 100644 --- a/src/conf.h +++ b/src/conf.h @@ -194,6 +194,15 @@ config_dup_block_string(const struct config_param *param, const char *name, return g_strdup(config_get_block_string(param, name, default_value)); } +/** + * Same as config_dup_path(), but looks up the setting in the + * specified block. + */ +G_GNUC_MALLOC +char * +config_dup_block_path(const struct config_param *param, const char *name, + GError **error_r); + G_GNUC_PURE unsigned config_get_block_unsigned(const struct config_param *param, const char *name, |