mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2026-05-26 21:28:12 +02:00
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@64 fefdeb5f-60dc-0310-8127-8f9354f1896f
19 lines
414 B
C
19 lines
414 B
C
#ifndef foocmdlinehfoo
|
|
#define foocmdlinehfoo
|
|
|
|
struct pa_cmdline_module {
|
|
char *name, *arguments;
|
|
struct pa_cmdline_module *next;
|
|
};
|
|
|
|
struct pa_cmdline {
|
|
int daemonize, help;
|
|
struct pa_cmdline_module *first_module, *last_module;
|
|
};
|
|
|
|
struct pa_cmdline* pa_cmdline_parse(int argc, char * const argv []);
|
|
void pa_cmdline_free(struct pa_cmdline *cmd);
|
|
|
|
void pa_cmdline_help(const char *argv0);
|
|
|
|
#endif
|