diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-05-13 14:29:47 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-05-13 14:29:47 +0000 |
commit | 71846c4e387e27164ffde6b2e8a188b3bc21b2eb (patch) | |
tree | 0651eb829e128942cb0fe361862f93436fdb7a23 /plugins/Dropbox/src/dropbox.h | |
parent | f112b278674402d2ea5428307f84de193695a07c (diff) |
Dropbox: refactoring of http requests
git-svn-id: http://svn.miranda-ng.org/main/trunk@13570 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
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 c8e38234ba..8c46fcc55b 100644 --- a/plugins/Dropbox/src/dropbox.h +++ b/plugins/Dropbox/src/dropbox.h @@ -97,12 +97,12 @@ private: void RequestAccountInfo();
// transfers
- void SendFile(const char *fileName, const char *data, int length);
+ 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 SendFileChunkedLast(const char *fileName, const char *uploadId);
+ void SendFileChunkedLast(const char *path, const char *uploadId);
- void CreateFolder(const char *folderName);
+ void CreateFolder(const char *encodedPath);
void CreateDownloadUrl(const char *path, char *url);
|