summaryrefslogtreecommitdiff
path: root/protocols/Tox/src/tox_events.cpp
blob: 406999549aadfab432c6b9fe595a93f2fcc31487 (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
#include "common.h"

int CToxProto::OnModulesLoaded(WPARAM, LPARAM)
{
	hProfileFolderPath = FoldersRegisterCustomPathT("Tox", Translate("Profiles folder"), MIRANDA_USERDATAT);

	return 0;
}

int CToxProto::OnContactDeleted(MCONTACT hContact, LPARAM)
{
	if (!IsOnline())
	{
		return -1;
	}

	if (!isChatRoom(hContact))
	{
		int32_t friendNumber = GetToxFriendNumber(hContact);
		TOX_ERR_FRIEND_DELETE error;
		if (!tox_friend_delete(tox, friendNumber, &error))
		{
			debugLogA(__FUNCTION__": failed to delete friend (%d)", error);
			return error;
		}
	}
	/*else
	{
		OnLeaveChatRoom(hContact, 0);
		int groupNumber = 0; // ???
		if (groupNumber == TOX_ERROR || tox_del_groupchat(tox, groupNumber) == TOX_ERROR)
		{
			return 1;
		}
	}*/

	return 0;
}