mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-10-31 22:25:33 -04:00
19 lines
503 B
C
19 lines
503 B
C
|
|
#ifndef foomodargshfoo
|
||
|
|
#define foomodargshfoo
|
||
|
|
|
||
|
|
#include <inttypes.h>
|
||
|
|
#include "sample.h"
|
||
|
|
|
||
|
|
struct pa_modargs;
|
||
|
|
|
||
|
|
struct pa_modargs *pa_modargs_new(const char *args, const char* const* keys);
|
||
|
|
void pa_modargs_free(struct pa_modargs*ma);
|
||
|
|
|
||
|
|
const char *pa_modargs_get_value(struct pa_modargs *ma, const char *key, const char *def);
|
||
|
|
int pa_modargs_get_value_u32(struct pa_modargs *ma, const char *key, uint32_t *value);
|
||
|
|
|
||
|
|
int pa_modargs_get_sample_spec(struct pa_modargs *ma, struct pa_sample_spec *ss);
|
||
|
|
|
||
|
|
|
||
|
|
#endif
|