mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-07 13:30:09 -05:00
documentation
thread_main_loop -> thread_loop
This commit is contained in:
parent
ebaaedef75
commit
6a3b5b1bf7
18 changed files with 578 additions and 251 deletions
|
|
@ -1178,9 +1178,13 @@ struct pw_client_node *pw_client_node_new(struct pw_client *client,
|
|||
return NULL;
|
||||
}
|
||||
|
||||
void pw_client_node_destroy(struct pw_client_node *this)
|
||||
/** Destroy a client node
|
||||
* \param node the client node to destroy
|
||||
* \memberof pw_client_node
|
||||
*/
|
||||
void pw_client_node_destroy(struct pw_client_node *node)
|
||||
{
|
||||
pw_resource_destroy(this->resource);
|
||||
pw_resource_destroy(node->resource);
|
||||
}
|
||||
|
||||
/** Get the set of fds for this \ref pw_client_node
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue