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 6889c0467a..74b156c864 100644 --- a/plugins/Dropbox/src/dropbox.h +++ b/plugins/Dropbox/src/dropbox.h @@ -82,9 +82,9 @@ private: void RequestAccountInfo();
// transfers
- void SendFile(const char *path, const char *data, int length);
- void SendFileChunkedFirst(const char *data, int length, char *uploadId, size_t &offset);
- void SendFileChunkedNext(const char *data, int length, const char *uploadId, size_t &offset);
+ void SendFile(const char *path, const char *data, size_t size);
+ void SendFileChunkedFirst(const char *data, size_t size, char *uploadId, size_t &offset);
+ void SendFileChunkedNext(const char *data, size_t size, const char *uploadId, size_t &offset);
void SendFileChunkedLast(const char *path, const char *uploadId);
void CreateFolder(const char *encodedPath);
|