mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-10-31 22:25:33 -04:00
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@104 fefdeb5f-60dc-0310-8127-8f9354f1896f
17 lines
531 B
C
17 lines
531 B
C
#ifndef fooautoloadhfoo
|
|
#define fooautoloadhfoo
|
|
|
|
#include "namereg.h"
|
|
|
|
struct pa_autoload_entry {
|
|
char *name;
|
|
enum pa_namereg_type type;
|
|
char *module, *argument;
|
|
};
|
|
|
|
void pa_autoload_add(struct pa_core *c, const char*name, enum pa_namereg_type type, const char*module, const char *argument);
|
|
void pa_autoload_free(struct pa_core *c);
|
|
int pa_autoload_remove(struct pa_core *c, const char*name, enum pa_namereg_type type);
|
|
void pa_autoload_request(struct pa_core *c, const char *name, enum pa_namereg_type type);
|
|
|
|
#endif
|