summaryrefslogtreecommitdiff
path: root/protocols/Tox/src/tox_services.cpp
blob: f42a3d35c00a94d61b940ce70d3f1dddaa5fa6f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "stdafx.h"

INT_PTR CToxProto::SetMyNickname(WPARAM wParam, LPARAM lParam)
{
	ptrT nickname((wParam & SMNN_UNICODE) ? mir_u2t((TCHAR*)lParam) : mir_a2t((char*)lParam));
	setTString("Nick", nickname);

	T2Utf szNick8(nickname);
	TOX_ERR_SET_INFO error;
	if (!tox_self_set_name(tox, szNick8, mir_strlen(szNick8), &error))
	{
		debugLogA(__FUNCTION__": failed to set nick name");
		return 1;
	}

	return 0;
}