diff options
author | aunsane <aunsane@gmail.com> | 2018-03-01 00:10:16 +0300 |
---|---|---|
committer | aunsane <aunsane@gmail.com> | 2018-03-01 00:10:16 +0300 |
commit | 8ff9b20b9da000caee0705760144b9f47e3c9ef9 (patch) | |
tree | df6ea9fb5ce2b9beb35d79a3fe1da3e5b439d9a4 /plugins/ExternalAPI | |
parent | 77f131a927158e6131fdad1c94ad166e0048e318 (diff) |
Removed old dropbox header #1144
Diffstat (limited to 'plugins/ExternalAPI')
-rw-r--r-- | plugins/ExternalAPI/m_dropbox.h | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/plugins/ExternalAPI/m_dropbox.h b/plugins/ExternalAPI/m_dropbox.h deleted file mode 100644 index e0061a74f0..0000000000 --- a/plugins/ExternalAPI/m_dropbox.h +++ /dev/null @@ -1,41 +0,0 @@ -#ifndef M_DROPBOX_H_
-#define M_DROPBOX_H_
-
-#define MIID_DROPBOX {0x9649d8e2, 0x7326, 0x4ec1, {0xb4, 0xa3, 0xf2, 0xec, 0x1a, 0x39, 0x84, 0x94}}
-
-struct DropboxUploadInfo
-{
- const wchar_t *localPath; // local path
- const wchar_t *serverFolder; // server folder in witch file will be placed (can be NULL)
-};
-
-// upload file on Dropbox
-// 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"
-
-// upload file on Dropbox
-// wParam = 0
-// lParam = (LPARAM)(const DropboxUploadInfo*)
-// returns file transfer 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"
-
-// if you want to get download links after upload
-// use ME_DROPBOX_UPLOADED hook. you'll get:
-struct DropboxUploadResult
-{
- HANDLE hProcess; // hProcess
- int status; // status of transfer. 0 on success otherwise fail
- const char* data; // '\r\n' separated download links
-};
-
-// notifies a caller that upload has been finished
-// wParam = 0
-// lParam = (LPARAM)(DropboxUploadResult*)
-#define ME_DROPBOX_UPLOADED "Dropbox/Uploaded"
-
-#endif //M_DROPBOX_H_
\ No newline at end of file |