summaryrefslogtreecommitdiffstats
path: root/src/cli.h
blob: 80d9fec7c4fd852a40ce7777840c72d8e87de56d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef fooclihfoo
#define fooclihfoo

#include "iochannel.h"
#include "core.h"

struct pa_cli;

struct pa_cli* pa_cli_new(struct pa_core *core, struct pa_iochannel *io);
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