basic cli interface
[profile/ivi/pulseaudio.git] / src / ioline.h
1 #ifndef fooiolinehfoo
2 #define fooiolinehfoo
3
4 #include "iochannel.h"
5
6 struct ioline;
7
8 struct ioline* ioline_new(struct iochannel *io);
9 void ioline_free(struct ioline *l);
10
11 void ioline_puts(struct ioline *s, const char *c);
12 void ioline_set_callback(struct ioline*io, void (*callback)(struct ioline*io, const char *s, void *userdata), void *userdata);
13
14 #endif