pulse-server: implement describe-module with core message

Implement the old pacmd describe-module command with a core message:

pactl send-message /core pipewire-pulse:describe-module
module-echo-cancel
This commit is contained in:
Wim Taymans 2024-05-06 11:38:04 +02:00
parent b3ff293263
commit a3ccbd00b4
4 changed files with 30 additions and 2 deletions

View file

@ -62,6 +62,8 @@ struct module {
#define module_emit_loaded(m,r) spa_hook_list_call(&m->listener_list, struct module_events, loaded, 0, r)
#define module_emit_destroy(m) spa_hook_list_call(&(m)->listener_list, struct module_events, destroy, 0)
const struct module_info *module_info_find(struct impl *impl, const char *name);
struct module *module_create(struct impl *impl, const char *name, const char *args);
void module_free(struct module *module);
int module_load(struct module *module);