summaryrefslogblamecommitdiffstats
path: root/friendfinder/receiver.h
blob: f96467724026040e8c504a83c03128becfb04b25 (plain) (tree)
1
2
3
4
5
6
7
8
9
10


                






                   









                    
                             
                               
 

                                                                  

       
#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;
};

/* 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);

#endif