diff options
author | George Hazan <george.hazan@gmail.com> | 2015-04-12 15:43:59 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-04-12 15:43:59 +0000 |
commit | 6b0bc1b4525f8fac9bcda33e602bea02a918156c (patch) | |
tree | 6025b20f0f677297f421ab222bd7fc8604284690 /protocols/SkypeWeb/src/skype_proto.cpp | |
parent | 2c7e6407a472bc6852be97c8869f3a1f514a12fd (diff) |
compilation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@12779 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeWeb/src/skype_proto.cpp')
-rw-r--r-- | protocols/SkypeWeb/src/skype_proto.cpp | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/protocols/SkypeWeb/src/skype_proto.cpp b/protocols/SkypeWeb/src/skype_proto.cpp index 4fa7b6adfc..aa041f1019 100644 --- a/protocols/SkypeWeb/src/skype_proto.cpp +++ b/protocols/SkypeWeb/src/skype_proto.cpp @@ -125,56 +125,22 @@ int CSkypeProto::AuthRecv(MCONTACT, PROTORECVEVENT* pre) return Proto_AuthRecv(m_szModuleName, pre);
}
-int CSkypeProto::AuthRequest(MCONTACT hContact, const PROTOCHAR *szMessage) { return 0; }
-
-HANDLE CSkypeProto::ChangeInfo(int, void*) { return 0; }
-
-HANDLE CSkypeProto::FileAllow(MCONTACT hContact, HANDLE hTransfer, const PROTOCHAR* tszPath) { return 0; }
-
-int CSkypeProto::FileCancel(MCONTACT hContact, HANDLE hTransfer) { return 0; }
-
-int CSkypeProto::FileDeny(MCONTACT hContact, HANDLE hTransfer, const PROTOCHAR* tszReason) { return 0; }
-
-int CSkypeProto::FileResume(HANDLE hTransfer, int* action, const PROTOCHAR** tszFilename) { return 0; }
-
int CSkypeProto::GetInfo(MCONTACT hContact, int)
{
PushRequest(new GetProfileRequest(ptrA(getStringA("TokenSecret")), ptrA(db_get_sa(hContact, m_szModuleName, SKYPE_SETTINGS_ID))), &CSkypeProto::LoadProfile);
return 0;
}
-HANDLE CSkypeProto::SearchByEmail(const PROTOCHAR*) { return 0; }
-
-HANDLE CSkypeProto::SearchByName(const PROTOCHAR*, const PROTOCHAR*, const PROTOCHAR*) { return 0; }
-
-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; }
-
-int CSkypeProto::RecvUrl(MCONTACT, PROTORECVEVENT*) { return 0; }
-
-int CSkypeProto::SendContacts(MCONTACT, int, int, MCONTACT*) { return 0; }
-
-HANDLE CSkypeProto::SendFile(MCONTACT hContact, const PROTOCHAR *szDescription, PROTOCHAR **ppszFiles) { return 0; }
-
int CSkypeProto::SendMsg(MCONTACT hContact, int flags, const char *msg)
{
return OnSendMessage(hContact, flags, msg);
}
-int CSkypeProto::SendUrl(MCONTACT, int, const char*) { return 0; }
-
-int CSkypeProto::SetApparentMode(MCONTACT, int) { return 0; }
-
int CSkypeProto::SetStatus(int iNewStatus)
{
if (iNewStatus == m_iDesiredStatus)
@@ -237,12 +203,6 @@ int CSkypeProto::SetStatus(int iNewStatus) return 0;
}
-HANDLE CSkypeProto::GetAwayMsg(MCONTACT) { return 0; }
-
-int CSkypeProto::RecvAwayMsg(MCONTACT, int, PROTORECVEVENT*) { return 0; }
-
-int CSkypeProto::SetAwayMsg(int, const PROTOCHAR *msg) { return 0; }
-
int CSkypeProto::UserIsTyping(MCONTACT hContact, int type)
{
ptrA regToken(getStringA("registrationToken"));
|