basic cli interface
[profile/ivi/pulseaudio.git] / src / cli.h
1 #ifndef fooclihfoo
2 #define fooclihfoo
3
4 #include "iochannel.h"
5 #include "core.h"
6
7 struct cli;
8
9 struct cli* cli_new(struct core *core, struct iochannel *io);
10 void cli_free(struct cli *cli);
11
12 void cli_set_eof_callback(struct cli *cli, void (*cb)(struct cli*c, void *userdata), void *userdata);
13
14 #endif