2004-06-18 00:22:37 +00:00
|
|
|
#ifndef fooclihfoo
|
|
|
|
|
#define fooclihfoo
|
|
|
|
|
|
|
|
|
|
#include "iochannel.h"
|
|
|
|
|
#include "core.h"
|
2004-07-10 20:56:38 +00:00
|
|
|
#include "module.h"
|
2004-06-18 00:22:37 +00:00
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
struct pa_cli;
|
2004-06-18 00:22:37 +00:00
|
|
|
|
2004-07-10 20:56:38 +00:00
|
|
|
struct pa_cli* pa_cli_new(struct pa_core *core, struct pa_iochannel *io, struct pa_module *m);
|
2004-07-03 23:35:12 +00:00
|
|
|
void pa_cli_free(struct pa_cli *cli);
|
2004-06-18 00:22:37 +00:00
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
void pa_cli_set_eof_callback(struct pa_cli *cli, void (*cb)(struct pa_cli*c, void *userdata), void *userdata);
|
2004-06-18 00:22:37 +00:00
|
|
|
|
|
|
|
|
#endif
|