Select Git revision
-
Martin Mareš authoredMartin Mareš authored
osd.h 333 B
/*
* 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);