Skip to content
Snippets Groups Projects
Select Git revision
  • cb4892943214d47f60622b2c309ed4555b93f327
  • master default
  • zs2021
  • zs1920
4 results

posloupnost-max.py

Blame
  • 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);