summaryrefslogtreecommitdiffstats
path: root/friendfinder/receiver.h
blob: 33d8b7544d4e3dd1c97274adaa29bfa7212aa98e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef __GUI_H_
#define __GUI_H_

struct position
{
	char *nick;
	char *lat;
	char *lon;
};

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