context: move context method to right header file.

This commit is contained in:
Wim Taymans 2022-02-01 16:30:43 +01:00
parent d6218b65ab
commit 0ac87a14cd
2 changed files with 3 additions and 2 deletions

View file

@ -37,8 +37,6 @@ int pw_conf_load_conf(const char *prefix, const char *name, struct pw_properties
int pw_conf_load_state(const char *prefix, const char *name, struct pw_properties *conf);
int pw_conf_save_state(const char *prefix, const char *name, const struct pw_properties *conf);
int pw_context_parse_conf_section(struct pw_context *context,
struct pw_properties *conf, const char *section);
/**
* \}

View file

@ -110,6 +110,9 @@ int pw_context_update_properties(struct pw_context *context, const struct spa_di
/** Get a config section for this context. Since 0.3.22 */
const char *pw_context_get_conf_section(struct pw_context *context, const char *section);
/** Parse a config section for this context. Since 0.3.22 */
int pw_context_parse_conf_section(struct pw_context *context,
struct pw_properties *conf, const char *section);
/** update properties from section into props. Since 0.3.45 */
int pw_context_conf_update_props(struct pw_context *context, const char *section,