blob: 31b4c45298b1619f16670cf589d19c8bc0395b44 (
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
|
#include "account.h"
#include "skypekit.h"
CAccount::CAccount(unsigned int oid, SERootObject* root) : Account(oid, root)
{
this->proto = NULL;
this->callback == NULL;
}
void CAccount::SetOnAccountChangedCallback(OnAccountChanged callback, CSkypeProto* proto)
{
this->skype = (CSkype *)root;
this->proto = proto;
this->callback = callback;
}
bool CAccount::SetAvatar(SEBinary avatar, Skype::VALIDATERESULT &result)
{
int fbl;
if (!this->skype->ValidateAvatar(avatar, result, fbl) || result != Skype::VALIDATED_OK)
return false;
if (!this->SetBinProperty(Account::P_AVATAR_IMAGE, avatar))
return false;
return true;
}
void CAccount::OnChange(int prop)
{
if (this->proto)
(proto->*callback)(prop);
}
|