From abcb6e772b670f0ac54dab0314a2c64217642de8 Mon Sep 17 00:00:00 2001 From: Alexander Lantsev Date: Sat, 5 Mar 2016 16:23:54 +0000 Subject: Dropbox: sync service should return data immediately git-svn-id: http://svn.miranda-ng.org/main/trunk@16429 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/ExternalAPI/m_dropbox.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'plugins/ExternalAPI') 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 -- cgit v1.2.3