diff options
author | George Hazan <ghazan@miranda.im> | 2018-12-09 20:12:58 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-12-09 20:12:58 +0300 |
commit | 349ce10960c26cce8c40d4184f1256512351a419 (patch) | |
tree | 8eb9e1ee72a9bf7a45d7a9dd44ca6ea5d1688987 /protocols/Sametime | |
parent | 9bbf4659a403f494818a9af943426cd545f6692a (diff) |
Sametime: useless method removed
Diffstat (limited to 'protocols/Sametime')
-rw-r--r-- | protocols/Sametime/src/sametime_proto.cpp | 7 | ||||
-rw-r--r-- | protocols/Sametime/src/sametime_proto.h | 4 |
2 files changed, 0 insertions, 11 deletions
diff --git a/protocols/Sametime/src/sametime_proto.cpp b/protocols/Sametime/src/sametime_proto.cpp index fd5d5c4eb2..7753b924d2 100644 --- a/protocols/Sametime/src/sametime_proto.cpp +++ b/protocols/Sametime/src/sametime_proto.cpp @@ -103,13 +103,6 @@ int CSametimeProto::FileDeny(MCONTACT hContact, HANDLE hTransfer, const wchar_t* return 0;
}
-int CSametimeProto::FileResume(HANDLE hTransfer, int* action, const wchar_t** szFilename)
-{
- debugLogW(L"CSametimeProto::FileResume() action=[%d]", &action);
- return 0;
-}
-
-
INT_PTR CSametimeProto::GetCaps(int type, MCONTACT hContact)
{
switch (type) {
diff --git a/protocols/Sametime/src/sametime_proto.h b/protocols/Sametime/src/sametime_proto.h index 08199a929d..e81767cfd5 100644 --- a/protocols/Sametime/src/sametime_proto.h +++ b/protocols/Sametime/src/sametime_proto.h @@ -1,9 +1,6 @@ -
#ifndef _SAMETIME_PROTO_H
#define _SAMETIME_PROTO_H
-
-
struct CSametimeProto : public PROTO<CSametimeProto>
{
@@ -19,7 +16,6 @@ struct CSametimeProto : public PROTO<CSametimeProto> HANDLE FileAllow(MCONTACT hContact, HANDLE hTransfer, const wchar_t* szPath) override;
int FileCancel(MCONTACT hContact, HANDLE hTransfer) override;
int FileDeny(MCONTACT hContact, HANDLE hTransfer, const wchar_t* szReason) override;
- int FileResume(HANDLE hTransfer, int* action, const wchar_t** szFilename) override;
INT_PTR GetCaps(int type, MCONTACT hContact = NULL) override;
int GetInfo(MCONTACT hContact, int infoType) override;
|