mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
Cleanup argument names in methods and events interfaces
First method argument is object, first event argument is data. Closes !963
This commit is contained in:
parent
d3ea3142e1
commit
22fc9eec35
55 changed files with 636 additions and 636 deletions
|
|
@ -28,7 +28,7 @@ tutorial. This is the event handler:
|
|||
\code{.c}
|
||||
int pending, done = 0;
|
||||
|
||||
void core_event_done(void *object, uint32_t id, int seq) {
|
||||
void core_event_done(void *data, uint32_t id, int seq) {
|
||||
if (id == PW_ID_CORE && seq == pending) {
|
||||
done = 1;
|
||||
pw_main_loop_quit(loop);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue