diff options
Diffstat (limited to 'src/pulse/proplist.h')
| -rw-r--r-- | src/pulse/proplist.h | 16 | 
1 files changed, 13 insertions, 3 deletions
diff --git a/src/pulse/proplist.h b/src/pulse/proplist.h index 39d53303..c23ef238 100644 --- a/src/pulse/proplist.h +++ b/src/pulse/proplist.h @@ -168,9 +168,19 @@ int pa_proplist_get(pa_proplist *p, const char *key, const void **data, size_t *  /** Update mode enum for pa_proplist_update(). \since 0.9.11 */  typedef enum pa_update_mode { -    PA_UPDATE_SET,  /*< Replace the entirey property list with the new one. Don't keep any of the old data around */ -    PA_UPDATE_MERGE, /*< Merge new property list into the existing one, not replacing any old entries if they share a common key with the new property list. */ -    PA_UPDATE_REPLACE /*< Merge new property list into the existing one, replacing all old entries that share a common key with  the new property list. */ +    PA_UPDATE_SET, +    /*< Replace the entirey property list with the new one. Don't keep +     *  any of the old data around */ + +    PA_UPDATE_MERGE, +    /*< Merge new property list into the existing one, not replacing +     *  any old entries if they share a common key with the new +     *  property list. */ + +    PA_UPDATE_REPLACE +    /*< Merge new property list into the existing one, replacing all +     *  old entries that share a common key with the new property +     *  list. */  } pa_update_mode_t;  /** Merge property list "other" into "p", adhering the merge mode as  | 
