summaryrefslogtreecommitdiff
path: root/protocols/JabberG/src/jabber_voip.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2022-08-07 18:11:51 +0300
committerGeorge Hazan <ghazan@miranda.im>2022-08-07 18:11:51 +0300
commit7ef04dbd77d561031c318f6066783e1b279d541c (patch)
tree3c62771e3f2609f8bf7d98c81aa33fa868ec2593 /protocols/JabberG/src/jabber_voip.cpp
parent8b8313f8ddf570c5e79fef25e3dbba76698d28ea (diff)
Jabber: fix for VoiceService calling
Diffstat (limited to 'protocols/JabberG/src/jabber_voip.cpp')
-rw-r--r--protocols/JabberG/src/jabber_voip.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/protocols/JabberG/src/jabber_voip.cpp b/protocols/JabberG/src/jabber_voip.cpp
index 146fcfb5c4..c4f89786af 100644
--- a/protocols/JabberG/src/jabber_voip.cpp
+++ b/protocols/JabberG/src/jabber_voip.cpp
@@ -522,3 +522,21 @@ bool CJabberProto::VOIPCallAccept(const TiXmlElement *jingleNode, const char *fr
m_ThreadInfo->send(iq);
return true;
}
+
+INT_PTR CJabberProto::JabberVOIP_call(WPARAM hContact, LPARAM)
+{
+ MessageBoxA(0,"CALL called", NULL,0);
+ return 0;
+}
+
+INT_PTR CJabberProto::JabberVOIP_answercall(WPARAM hContact, LPARAM)
+{
+ MessageBoxA(0,"ANSWER called", NULL,0);
+ return 0;
+}
+
+INT_PTR CJabberProto::JabberVOIP_dropcall(WPARAM hContact, LPARAM)
+{
+ MessageBoxA(0,"DROP called", NULL,0);
+ return 0;
+}