blob: d6250b37271d205f06ad160b63490876e77b66db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef fooclihfoo
#define fooclihfoo
#include "iochannel.h"
#include "core.h"
#include "module.h"
struct pa_cli;
struct pa_cli* pa_cli_new(struct pa_core *core, struct pa_iochannel *io, struct pa_module *m);
void pa_cli_free(struct pa_cli *cli);
void pa_cli_set_eof_callback(struct pa_cli *cli, void (*cb)(struct pa_cli*c, void *userdata), void *userdata);
#endif
|