/*
 *	On-screen Display Daemon -- Client Interface
 *
 *	(c) 2010 Martin Mares <mj@ucw.cz>
 */

/* client.c */

void osd_init(void);

struct osd_msg;
struct osd_msg *osd_new_msg(void);
void osd_add_line(struct osd_msg *msg, char *key, char *val);
void osd_send(struct osd_msg *msg);

void osd_fork(void);
void osd_wait(int seconds);