Пример #1
0
void Protocol::SetAvatar(const TCHAR *file_name)
{
	if (!CanSetAvatar())
		return;

	CallService(MS_AV_SETMYAVATART, (WPARAM)name, (LPARAM)file_name);
}
Пример #2
0
void Protocol::SetAvatar(const char *file_name)
{
	if (!CanSetAvatar())
		return;

	CallService(MS_AV_SETMYAVATAR, (WPARAM) name.c_str(), (LPARAM) file_name);
}