1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
typedef struct _Child Child; typedef struct _Socket Socket; struct _Socket { GtkWidget *box; GtkWidget *frame; GtkWidget *socket; Child *child; }; void wait_for_children (void); Socket *socket_new (void); void socket_start_child (Socket *socket, gboolean active, gboolean qt);