diff options
Diffstat (limited to 'plugins/Dropbox/src/dropbox.h')
-rw-r--r-- | plugins/Dropbox/src/dropbox.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Dropbox/src/dropbox.h b/plugins/Dropbox/src/dropbox.h index 543b492d7c..65fc092e70 100644 --- a/plugins/Dropbox/src/dropbox.h +++ b/plugins/Dropbox/src/dropbox.h @@ -45,7 +45,7 @@ private: ULONG hMessageProcess;
HANDLE hFileSentEventHook;
-
+
MCONTACT hDefaultContact;
MCONTACT hTransferContact;
@@ -95,8 +95,8 @@ private: // transrers
int SendFile(const char *fileName, const char *data, int length);
- int SendFileChunkedFirst(const char *data, int length, char *uploadId, int &offset);
- int SendFileChunkedNext(const char *data, int length, const char *uploadId, int &offset);
+ int SendFileChunkedFirst(const char *data, int length, char *uploadId, size_t &offset);
+ int SendFileChunkedNext(const char *data, int length, const char *uploadId, size_t &offset);
int SendFileChunkedLast(const char *fileName, const char *uploadId);
int CreateFolder(const char *folderName);
|