pulse-server: serve module properties from static list

None of the modules really need a dynamic property list,
so serve the properties from a static list.
This commit is contained in:
Barnabás Pőcze 2022-06-01 17:42:12 +02:00
parent 774ade1467
commit c9f632da9f
25 changed files with 26 additions and 1 deletions

View file

@ -43,6 +43,8 @@ struct module_info {
struct module *(*create) (struct impl *impl, const char *args);
int (*load) (struct client *client, struct module *module);
int (*unload) (struct module *module);
const struct spa_dict *properties;
};
#define DEFINE_MODULE_INFO(name) \