mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-03 09:01:50 -05:00
modargs: New function: pa_modargs_iterate().
This commit is contained in:
parent
187c4f32cf
commit
7049b3c5bc
2 changed files with 19 additions and 0 deletions
|
|
@ -415,3 +415,13 @@ int pa_modargs_get_proplist(pa_modargs *ma, const char *name, pa_proplist *p, pa
|
|||
|
||||
return 0;
|
||||
}
|
||||
|
||||
const char *pa_modargs_iterate(pa_modargs *ma, void **state) {
|
||||
pa_hashmap *map = (pa_hashmap*) ma;
|
||||
struct entry *e;
|
||||
|
||||
if (!(e = pa_hashmap_iterate(map, state, NULL)))
|
||||
return NULL;
|
||||
|
||||
return e->key;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue