mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2026-06-09 09:48:22 +02:00
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@22 fefdeb5f-60dc-0310-8127-8f9354f1896f
14 lines
299 B
C
14 lines
299 B
C
#ifndef fooclihfoo
|
|
#define fooclihfoo
|
|
|
|
#include "iochannel.h"
|
|
#include "core.h"
|
|
|
|
struct cli;
|
|
|
|
struct cli* cli_new(struct core *core, struct iochannel *io);
|
|
void cli_free(struct cli *cli);
|
|
|
|
void cli_set_eof_callback(struct cli *cli, void (*cb)(struct cli*c, void *userdata), void *userdata);
|
|
|
|
#endif
|