mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2026-02-15 04:27:50 -05:00
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@22 fefdeb5f-60dc-0310-8127-8f9354f1896f
14 lines
357 B
C
14 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
|