basic cli interface

git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@22 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
Lennart Poettering 2004-06-18 00:22:37 +00:00
parent eb946dbdbe
commit 993d1bce74
21 changed files with 505 additions and 49 deletions

14
src/cli.h Normal file
View file

@ -0,0 +1,14 @@
#ifndef fooclihfoo
#define fooclihfoo
#include "iochannel.h"
#include "core.h"
struct cli;
struct cli* cli_new(struct core *core, struct iochannel *io);
void cli_free(struct cli *cli);
void cli_set_eof_callback(struct cli *cli, void (*cb)(struct cli*c, void *userdata), void *userdata);
#endif