summaryrefslogtreecommitdiffstats
path: root/src/cli-command.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2004-07-14 21:52:41 +0000
committerLennart Poettering <lennart@poettering.net>2004-07-14 21:52:41 +0000
commite61e9244aa082c07df4f21213cd3d223033fd03f (patch)
tree399f4a83862b7202976d96a9a9d5883e8080f60a /src/cli-command.h
parentb69178b067d4151de08bdcdaa9922d2838134c3c (diff)
complete implementation of the command line
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@65 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src/cli-command.h')
-rw-r--r--src/cli-command.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/cli-command.h b/src/cli-command.h
new file mode 100644
index 00000000..f95261b7
--- /dev/null
+++ b/src/cli-command.h
@@ -0,0 +1,11 @@
+#ifndef fooclicommandhfoo
+#define fooclicommandhfoo
+
+#include "strbuf.h"
+#include "core.h"
+
+int pa_cli_command_execute_line(struct pa_core *c, const char *s, struct pa_strbuf *buf, int *fail, int *verbose);
+int pa_cli_command_execute_file(struct pa_core *c, const char *fn, struct pa_strbuf *buf, int *fail, int *verbose);
+int pa_cli_command_execute(struct pa_core *c, const char *s, struct pa_strbuf *buf, int *fail, int *verbose);
+
+#endif