summaryrefslogtreecommitdiff
path: root/core/Messenger.h
blob: ae8ace168727278b769654b7ae6fc31c7853626e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/* Messenger.h
* 
* An implementation of a simple text chat only messenger on the tox network core.
* 
*/
 
 
#ifndef MESSENGER_H 
#define MESSENGER_H  

#include "net_crypto.h"
#include "DHT.h"


//add a friend
//returns the friend number if success
//return -1 if failure.
int m_addfriend(uint8_t * client_id);


//remove a friend
int m_delfriend(int friendnumber);

//return 1 if friend is online
//return 0 if he is not
int m_friendonline(int friendnumber);


//send a text chat message to a friend.
int m_sendmessage(int friendnumber);


//set the function that will be executed when a friend request is recieved.
int m_callback_friendrequest();


//set the function that will be executed when a message from a friend is recieved.
int m_callback_friendmessage();


//run this at startup
void initMessenger();


//the main loop that needs to be run at least 200 times per second.
void doMessenger();

#endif