complete implementation of the command line

git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@65 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
Lennart Poettering 2004-07-14 21:52:41 +00:00
parent b69178b067
commit e61e9244aa
12 changed files with 663 additions and 509 deletions

View file

@ -1,14 +1,10 @@
#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;
int daemonize, help, fail, verbose;
char *cli_commands;
};
struct pa_cmdline* pa_cmdline_parse(int argc, char * const argv []);