| PipeWire 1.2.2
    | 
Module events added with pw_impl_module_add_listener. More...
#include <pipewire/impl-module.h>
| Data Fields | |
| uint32_t | version | 
| void(* | destroy )(void *data) | 
| The module is destroyed. | |
| void(* | free )(void *data) | 
| The module is freed. | |
| void(* | initialized )(void *data) | 
| The module is initialized. | |
| void(* | registered )(void *data) | 
| The module is registered. | |
Module events added with pw_impl_module_add_listener.
| uint32_t pw_impl_module_events::version | 
| void(* pw_impl_module_events::destroy) (void *data) | 
The module is destroyed.
This is the time to unregister and destroy any objects created by the module.
| void(* pw_impl_module_events::free) (void *data) | 
The module is freed.
This will be called after destroy() returns.
| void(* pw_impl_module_events::initialized) (void *data) | 
The module is initialized.
| void(* pw_impl_module_events::registered) (void *data) | 
The module is registered.
This is a good time to register objects created from the module.