#ifndef CONFIG_REQUEST_H
#define CONFIG_REQUEST_H
#include "settings-parser.h"
#include "config-filter.h"
struct master_service_settings_output;
enum config_dump_scope {
/* Dump all settings */
/* Dump all that have explicitly been set */
/* Dump only settings that differ from defaults */
};
enum config_dump_flags {
/* Errors are reported using callback and they don't stop handling */
/* Set if dumping a section and not top level config */
};
enum config_key_type {
/* error message is in value */
};
const void *default_value,
struct config_export_context *
enum config_dump_flags flags,
const struct config_filter *filter);
const struct config_module_parser *parsers);
struct master_service_settings_output *output_r);
const char *
#endif