mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-12-16 08:56:40 -05:00
CANCELLED vs. CANCELED
Define CANCELLED as alias for CANCELED
This commit is contained in:
parent
12f211105e
commit
6b8fdc4169
1 changed files with 3 additions and 2 deletions
|
|
@ -95,13 +95,14 @@ static inline int PA_STREAM_IS_GOOD(pa_stream_state_t x) {
|
||||||
typedef enum pa_operation_state {
|
typedef enum pa_operation_state {
|
||||||
PA_OPERATION_RUNNING, /**< The operation is still running */
|
PA_OPERATION_RUNNING, /**< The operation is still running */
|
||||||
PA_OPERATION_DONE, /**< The operation has been completed */
|
PA_OPERATION_DONE, /**< The operation has been completed */
|
||||||
PA_OPERATION_CANCELED /**< The operation has been canceled */
|
PA_OPERATION_CANCELLED /**< The operation has been cancelled. Before 0.9.18 this was called PA_OPERATION_CANCELED. That name is still available for compatibility. */
|
||||||
} pa_operation_state_t;
|
} pa_operation_state_t;
|
||||||
|
|
||||||
/** \cond fulldocs */
|
/** \cond fulldocs */
|
||||||
#define PA_OPERATION_RUNNING PA_OPERATION_RUNNING
|
#define PA_OPERATION_RUNNING PA_OPERATION_RUNNING
|
||||||
#define PA_OPERATION_DONE PA_OPERATION_DONE
|
#define PA_OPERATION_DONE PA_OPERATION_DONE
|
||||||
#define PA_OPERATION_CANCELED PA_OPERATION_CANCELED
|
#define PA_OPERATION_CANCELED PA_OPERATION_CANCELLED
|
||||||
|
#define PA_OPERATION_CANCELLED PA_OPERATION_CANCELLED
|
||||||
/** \endcond */
|
/** \endcond */
|
||||||
|
|
||||||
/** An invalid index */
|
/** An invalid index */
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue