#ifndef __GUI_H_ #define __GUI_H_ struct position { char *nick; char *lat; char *lon; }; struct sender { char *nick; char *lat; char *lon; int is_init; int lat_set; int lon_set; char* lat_first; char* lat_second; char* lon_first; char* lon_second; int lat_first_set; int lat_second_set; int lon_first_set; int lon_second_set; }; /* calls main for receiver */ void receiver_main(void *user); /* sets the ip of irc-server, to whom the receiver will connect */ void receiver_set_ip(char *_ip); void set_receiver_exit(); void set_sender_count(int number); #endif