mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-12-20 08:56:47 -05:00
basic cli interface
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@22 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
parent
eb946dbdbe
commit
993d1bce74
21 changed files with 505 additions and 49 deletions
14
src/ioline.h
Normal file
14
src/ioline.h
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#ifndef fooiolinehfoo
|
||||
#define fooiolinehfoo
|
||||
|
||||
#include "iochannel.h"
|
||||
|
||||
struct ioline;
|
||||
|
||||
struct ioline* ioline_new(struct iochannel *io);
|
||||
void ioline_free(struct ioline *l);
|
||||
|
||||
void ioline_puts(struct ioline *s, const char *c);
|
||||
void ioline_set_callback(struct ioline*io, void (*callback)(struct ioline*io, const char *s, void *userdata), void *userdata);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue