mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-02 09:01:46 -05:00
client: extend documentation on pa_operation_cancel() a bit
This commit is contained in:
parent
a44cb642eb
commit
3e2ab9b22e
1 changed files with 5 additions and 1 deletions
|
|
@ -40,7 +40,11 @@ pa_operation *pa_operation_ref(pa_operation *o);
|
|||
/** Decrease the reference count by one */
|
||||
void pa_operation_unref(pa_operation *o);
|
||||
|
||||
/** Cancel the operation. Beware! This will not necessarily cancel the execution of the operation on the server side. */
|
||||
/** Cancel the operation. Beware! This will not necessarily cancel the
|
||||
* execution of the operation on the server side. However it will make
|
||||
* sure that the callback associated with this operation will not be
|
||||
* called anymore, effectively disabling the operation from the client
|
||||
* side's view. */
|
||||
void pa_operation_cancel(pa_operation *o);
|
||||
|
||||
/** Return the current status of the operation */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue