diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-04-04 22:00:18 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-04-04 22:00:18 +0000 |
commit | 04da76c5fae4f4ef3eda995641b0251671d6edd0 (patch) | |
tree | dd5a96c5a9524e4e2baf94ea854e4a19dfae2471 /protocols/SkypeWeb/src/skype_proto.cpp | |
parent | c89e8a054ac888b27065916ffde96af73404228c (diff) |
SkypeWeb: support of actions (/me ...)
git-svn-id: http://svn.miranda-ng.org/main/trunk@12600 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeWeb/src/skype_proto.cpp')
-rw-r--r-- | protocols/SkypeWeb/src/skype_proto.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/protocols/SkypeWeb/src/skype_proto.cpp b/protocols/SkypeWeb/src/skype_proto.cpp index eb420ad998..f7ceb14f7c 100644 --- a/protocols/SkypeWeb/src/skype_proto.cpp +++ b/protocols/SkypeWeb/src/skype_proto.cpp @@ -104,6 +104,11 @@ HWND CSkypeProto::SearchAdvanced(HWND owner) { return 0; } HWND CSkypeProto::CreateExtendedSearchUI(HWND owner) { return 0; }
+int CSkypeProto::RecvMsg(MCONTACT hContact, PROTORECVEVENT *pre)
+{
+ return SaveMessageToDb(hContact, pre);
+}
+
int CSkypeProto::RecvContacts(MCONTACT, PROTORECVEVENT*) { return 0; }
int CSkypeProto::RecvFile(MCONTACT hContact, PROTOFILEEVENT *pre) { return 0; }
|