]> code.delx.au - pulseaudio/blobdiff - src/pulsecore/idxset.h
alsa: throw timing data away after device resume
[pulseaudio] / src / pulsecore / idxset.h
index a6179fcf125940694a7f51b9ee1c9fb2f205c4bb..d1e68c5c48191344b4742ff874126256adafe66b 100644 (file)
@@ -103,6 +103,9 @@ unsigned pa_idxset_size(pa_idxset*s);
 /* Return TRUE of the idxset is empty */
 pa_bool_t pa_idxset_isempty(pa_idxset *s);
 
+/* Duplicate the idxset. This will not copy the actual indexes */
+pa_idxset *pa_idxset_copy(pa_idxset *s);
+
 /* A macro to ease iteration through all entries */
 #define PA_IDXSET_FOREACH(e, s, idx) \
     for ((e) = pa_idxset_first((s), &(idx)); (e); (e) = pa_idxset_next((s), &(idx)))