add some missing events

Add initialized events for completeness
This commit is contained in:
Wim Taymans 2019-11-25 15:58:19 +01:00
parent b73976ff10
commit b7c5e00697
14 changed files with 44 additions and 2 deletions

View file

@ -63,6 +63,10 @@ struct pw_module_events {
/** The module is destroyed */
void (*destroy) (void *data);
/** The module is freed */
void (*free) (void *data);
/** The module is initialized */
void (*initialized) (void *data);
/** The module is registered. This is a good time to register
* objectes created from the module. */