diff options
author | Lennart Poettering <lennart@poettering.net> | 2009-10-07 03:39:30 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2009-10-07 03:39:30 +0200 |
commit | 692ce73899285c6ed07e93084a5f830a9a8effcc (patch) | |
tree | fb57aacd95086eb35787f902353857daf3f8fe95 /src/pulsecore/modargs.h | |
parent | b3592a160f0d2a28605048a81c0261bf7c45acbb (diff) | |
parent | 019331d25b6af107fb8cacc3ada552e7567a64bf (diff) |
Merge remote branch 'tanuk/dbus-work'
Diffstat (limited to 'src/pulsecore/modargs.h')
-rw-r--r-- | src/pulsecore/modargs.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/pulsecore/modargs.h b/src/pulsecore/modargs.h index b3125b10..1ed66e9a 100644 --- a/src/pulsecore/modargs.h +++ b/src/pulsecore/modargs.h @@ -60,4 +60,13 @@ int pa_modargs_get_sample_spec_and_channel_map(pa_modargs *ma, pa_sample_spec *s int pa_modargs_get_proplist(pa_modargs *ma, const char *name, pa_proplist *p, pa_update_mode_t m); +/* Iterate through the module argument list. The user should allocate a + * state variable of type void* and initialize it with NULL. A pointer + * to this variable should then be passed to pa_modargs_iterate() + * which should be called in a loop until it returns NULL which + * signifies EOL. On each invication this function will return the + * key string for the next entry. The keys in the argument list do not + * have any particular order. */ +const char *pa_modargs_iterate(pa_modargs *ma, void **state); + #endif |