]> mj.ucw.cz Git - osdd.git/blob - osd.h
make release: Reorganized my directory structure
[osdd.git] / osd.h
1 /*
2  *      On-screen Display Daemon -- Client Interface
3  *
4  *      (c) 2010 Martin Mares <mj@ucw.cz>
5  */
6
7 /* client.c */
8
9 void osd_init(void);
10
11 struct osd_msg;
12 struct osd_msg *osd_new_msg(void);
13 void osd_add_line(struct osd_msg *msg, char *key, char *val);
14 void osd_send(struct osd_msg *msg);
15
16 void osd_fork(void);
17 void osd_wait(int seconds);