gtkballs/src/child.h
2019-10-29 08:43:27 +03:00

14 lines
297 B
C

#ifndef __CHILD_H__
#define __CHILD_H__
/* spawn score writer process */
int child_setup(gchar *score_file);
/* check if child process alive or not */
int child_writer_alive(void);
/* check score writer process and display warning if not running */
int child_writer_dead_handler(void);
#endif