mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2026-03-13 05:33:50 -04:00
15 lines
357 B
C
15 lines
357 B
C
|
|
#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
|