Example #1
0
void TlenProcessPresenceAvatar(XmlNode *node, JABBER_LIST_ITEM *item) {
	HANDLE hContact;
	if ((hContact=JabberHContactFromJID(item->jid)) == NULL) return;
	TlenProcessAvatarNode(JabberXmlGetChild(node, "avatar"), item);
}
Example #2
0
void TlenProcessPresenceAvatar(TlenProtocol *proto, XmlNode *node, TLEN_LIST_ITEM *item) {
	HANDLE hContact;
	if ((hContact=TlenHContactFromJID(proto, item->jid)) == NULL) return;
	TlenProcessAvatarNode(proto, TlenXmlGetChild(node, "avatar"), item);
}
Example #3
0
void TlenProcessPresenceAvatar(TlenProtocol *proto, XmlNode *node, TLEN_LIST_ITEM *item) {
	MCONTACT hContact=TlenHContactFromJID(proto, item->jid);
	if (hContact != NULL)
		TlenProcessAvatarNode(proto, TlenXmlGetChild(node, "avatar"), item);
}