mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-04 13:30:12 -05:00
pulse-server: module: remove unused client argument
None of the modules use the `client` argument in their unload callbacks. Remove it.
This commit is contained in:
parent
bc2914b3e9
commit
f5e561c2fe
24 changed files with 28 additions and 28 deletions
|
|
@ -53,7 +53,7 @@ struct module_methods {
|
|||
uint32_t version;
|
||||
|
||||
int (*load) (struct client *client, struct module *module);
|
||||
int (*unload) (struct client *client, struct module *module);
|
||||
int (*unload) (struct module *module);
|
||||
};
|
||||
|
||||
struct module {
|
||||
|
|
@ -76,7 +76,7 @@ struct module *module_create(struct client *client, const char *name, const char
|
|||
void module_free(struct module *module);
|
||||
struct module *module_new(struct impl *impl, const struct module_methods *methods, size_t user_data);
|
||||
int module_load(struct client *client, struct module *module);
|
||||
int module_unload(struct client *client, struct module *module);
|
||||
int module_unload(struct module *module);
|
||||
void module_schedule_unload(struct module *module);
|
||||
|
||||
void module_add_listener(struct module *module,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue