diff options
Diffstat (limited to 'protocols/ICQ-WIM/src/proto.cpp')
-rw-r--r-- | protocols/ICQ-WIM/src/proto.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/protocols/ICQ-WIM/src/proto.cpp b/protocols/ICQ-WIM/src/proto.cpp index 3fc7005795..3aaba62d5c 100644 --- a/protocols/ICQ-WIM/src/proto.cpp +++ b/protocols/ICQ-WIM/src/proto.cpp @@ -431,6 +431,19 @@ int CIcqProto::FileCancel(MCONTACT hContact, HANDLE hTransfer) return 0; } +int CIcqProto::FileResume(HANDLE hTransfer, int *action, const wchar_t **szFilename) +{ + auto *ft = (IcqFileTransfer *)hTransfer; + if (!m_bOnline || ft == nullptr) + return 1; + + if (*action == FILERESUME_RENAME) { + ft->m_wszFileName = *szFilename; + ft->pfts.szCurrentFile.w = ft->m_wszFileName.GetBuffer(); + } + return 0; +} + //////////////////////////////////////////////////////////////////////////////////////// // GetCaps - return protocol capabilities bits |