diff options
Diffstat (limited to 'protocols/Tox/src/tox_transfer.h')
-rw-r--r-- | protocols/Tox/src/tox_transfer.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/protocols/Tox/src/tox_transfer.h b/protocols/Tox/src/tox_transfer.h index c185209091..2ac2726b9d 100644 --- a/protocols/Tox/src/tox_transfer.h +++ b/protocols/Tox/src/tox_transfer.h @@ -22,6 +22,8 @@ struct FileTransferParam uint32_t fileNumber;
uint64_t transferNumber;
+ bool isAvatar;
+
FileTransferParam(uint32_t friendNumber, uint32_t fileNumber, const TCHAR *fileName, uint64_t fileSize)
{
status = NONE;
@@ -40,6 +42,8 @@ struct FileTransferParam pfts.totalProgress = pfts.currentFileProgress = 0;
pfts.currentFileNumber = 0;
pfts.tszWorkingDir = NULL;
+
+ isAvatar = false;
}
bool OpenFile(const TCHAR *mode)
|