summaryrefslogtreecommitdiff
path: root/plugins/ExternalAPI/m_dropbox.h
diff options
context:
space:
mode:
authorAlexander Lantsev <aunsane@gmail.com>2016-03-05 16:23:54 +0000
committerAlexander Lantsev <aunsane@gmail.com>2016-03-05 16:23:54 +0000
commitabcb6e772b670f0ac54dab0314a2c64217642de8 (patch)
tree68eb49c41e936f49638cc98facf40e6e4be55996 /plugins/ExternalAPI/m_dropbox.h
parent5452f92d9270cdbb23e9c28a9ea202d73d8d810c (diff)
Dropbox: sync service should return data immediately
git-svn-id: http://svn.miranda-ng.org/main/trunk@16429 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/ExternalAPI/m_dropbox.h')
-rw-r--r--plugins/ExternalAPI/m_dropbox.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/ExternalAPI/m_dropbox.h b/plugins/ExternalAPI/m_dropbox.h
index feeb37181b..3d2eacae5e 100644
--- a/plugins/ExternalAPI/m_dropbox.h
+++ b/plugins/ExternalAPI/m_dropbox.h
@@ -8,11 +8,11 @@ struct DropboxUploadInfo
};
// upload file on Dropbox
-// wParam = 0
+// wParam = (WPARAM)(char**) '\r\n' separated download links (can be NULL, otherwise should be manually free)
// lParam = (LPARAM)(const DropboxUploadInfo*)
// returns status of transfer.
// 0 on success otherwise fail
-#define MS_DROPBOX_UPLOAD "Dropbox/Upload"
+#define MS_DROPBOX_UPLOAD "Dropbox/Upload"
// upload file on Dropbox
// wParam = 0
@@ -20,7 +20,7 @@ struct DropboxUploadInfo
// returns file htansfer handle or NULL on failure
// returns immediately, without waiting for the send
// note, that you can track progress by using ME_PROTO_ACK
-#define MS_DROPBOX_UPLOADASYNC "Dropbox/UploadAsync"
+#define MS_DROPBOX_UPLOADASYNC "Dropbox/UploadAsync"
// if you want to get download links after upload
// use ME_DROPBOX_UPLOADED hook. you'll get:
@@ -28,7 +28,7 @@ struct DropboxUploadResult
{
HANDLE hProcess; // hProcess
int status; // status of transfer. 0 on success otherwise fail
- const char* data; // data
+ const char* data; // '\r\n' separated download links
};
// notifies a caller that upload has been finished