diff options
author | aunsane <aunsane@gmail.com> | 2017-12-09 23:39:16 +0300 |
---|---|---|
committer | aunsane <aunsane@gmail.com> | 2017-12-09 23:39:16 +0300 |
commit | 6d27acd0a57bc6a228f1b6dd2ce451c02cc7419c (patch) | |
tree | a82b4c833eb6cec7ec81942d611ae708c0da0702 /plugins/ExternalAPI/m_dropbox.h | |
parent | 15d04b366b37563254f914a41db97646730514b9 (diff) |
CloudFile: realized MS_DROPBOX_UPLOAD
Diffstat (limited to 'plugins/ExternalAPI/m_dropbox.h')
-rw-r--r-- | plugins/ExternalAPI/m_dropbox.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/ExternalAPI/m_dropbox.h b/plugins/ExternalAPI/m_dropbox.h index 656c95d010..e0061a74f0 100644 --- a/plugins/ExternalAPI/m_dropbox.h +++ b/plugins/ExternalAPI/m_dropbox.h @@ -5,8 +5,8 @@ struct DropboxUploadInfo
{
- const TCHAR *localPath; // local path
- const TCHAR *serverFolder; // server folder in witch file will be placed (can be NULL)
+ 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
@@ -19,7 +19,7 @@ struct DropboxUploadInfo // upload file on Dropbox
// wParam = 0
// lParam = (LPARAM)(const DropboxUploadInfo*)
-// returns file htansfer handle or NULL on failure
+// 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"
|