diff options
Diffstat (limited to 'include/m_protocols.h')
-rw-r--r-- | include/m_protocols.h | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/include/m_protocols.h b/include/m_protocols.h index c7402c7d74..5cf76a7cfc 100644 --- a/include/m_protocols.h +++ b/include/m_protocols.h @@ -120,28 +120,28 @@ typedef struct tagPROTOFILETRANSFERSTATUS HANDLE hContact;
DWORD flags; // one of PFTS_* constants
- union {
- char **pszFiles;
- TCHAR **ptszFiles;
- WCHAR **pwszFiles;
- };
+ union {
+ char **pszFiles;
+ TCHAR **ptszFiles;
+ WCHAR **pwszFiles;
+ };
- int totalFiles;
+ int totalFiles;
int currentFileNumber;
unsigned __int64 totalBytes;
unsigned __int64 totalProgress;
- union {
- char *szWorkingDir;
- TCHAR *tszWorkingDir;
- WCHAR *wszWorkingDir;
- };
-
- union {
- char *szCurrentFile;
- TCHAR *tszCurrentFile;
- WCHAR *wszCurrentFile;
- };
+ union {
+ char *szWorkingDir;
+ TCHAR *tszWorkingDir;
+ WCHAR *wszWorkingDir;
+ };
+
+ union {
+ char *szCurrentFile;
+ TCHAR *tszCurrentFile;
+ WCHAR *wszCurrentFile;
+ };
unsigned __int64 currentFileSize;
unsigned __int64 currentFileProgress;
|