summaryrefslogtreecommitdiffstats
path: root/src/pulse/proplist.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2008-09-03 18:51:46 +0200
committerLennart Poettering <lennart@poettering.net>2008-09-03 18:51:46 +0200
commitc402de754583b41ae96409aebce713b0d07e2826 (patch)
tree4de9d72bb9ffa49405e50b61553506e04e76cf6a /src/pulse/proplist.h
parent40b66a0be9579fff095cba77f3ea29c390d966f2 (diff)
reindent comments a bit
Diffstat (limited to 'src/pulse/proplist.h')
-rw-r--r--src/pulse/proplist.h16
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