diff options
Diffstat (limited to 'protocols/Skype/src/skype_events.cpp')
-rw-r--r-- | protocols/Skype/src/skype_events.cpp | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/protocols/Skype/src/skype_events.cpp b/protocols/Skype/src/skype_events.cpp index 34f46f8fd6..3b2d781ccc 100644 --- a/protocols/Skype/src/skype_events.cpp +++ b/protocols/Skype/src/skype_events.cpp @@ -469,6 +469,32 @@ void CSkypeProto::OnMessage(CConversation::Ref conversation, CMessage::Ref messa }
break;
+ case CMessage::STARTED_LIVESESSION: + //conversation->LeaveLiveSession(); + + uint timestamp;
+ message->GetPropTimestamp(timestamp); + + SEString identity;
+ message->GetPropAuthor(identity);
+
+ CContact::Ref author;
+ this->skype->GetContact(identity, author); + + HANDLE hContact = this->AddContact(author); + + wchar_t *message = new wchar_t[14]; + ::wcscpy(message, L"Incoming call"); + + this->AddDataBaseEvent( + hContact, + SKYPE_DB_EVENT_TYPE_CALL, + timestamp,
+ DBEF_UTF,
+ ::wcslen(message) + 1,
+ (PBYTE)message);
+ break;
+
//case CMessage::REQUESTED_AUTH:
// break;
@@ -478,4 +504,4 @@ void CSkypeProto::OnMessage(CConversation::Ref conversation, CMessage::Ref messa //case CMessage::BLOCKED:
// break;
}
-}
+}
\ No newline at end of file |