diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2014-03-09 20:23:19 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2014-03-09 20:23:19 +0000 |
commit | 3bdbd608284853f05acdf137013de71efd915499 (patch) | |
tree | 6d82b978ff4e52027f7ffe8db29cbce24adcf908 /plugins/Dropbox/src/m_dropbox.h | |
parent | d808595a83280e6232923143efeb1851c8e33423 (diff) |
Dropbox:
- added MS_DROPBOX_SEND_FILE service
- added new behaviors for download links
- attempt to fix tabsrmm button behavior
git-svn-id: http://svn.miranda-ng.org/main/trunk@8527 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Dropbox/src/m_dropbox.h')
-rw-r--r-- | plugins/Dropbox/src/m_dropbox.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/plugins/Dropbox/src/m_dropbox.h b/plugins/Dropbox/src/m_dropbox.h new file mode 100644 index 0000000000..d0266942a7 --- /dev/null +++ b/plugins/Dropbox/src/m_dropbox.h @@ -0,0 +1,11 @@ +#ifndef M_DROPBOX_H_
+#define M_DROPBOX_H_
+
+//upload file on Dropbox
+//wParam = (MCONTACT)hContact
+//lParam = (LPARAM)(const char*)szPath
+//returns 0 on success or nonzero on failure
+//returns immediately, before the file or folder is uploaded
+#define MS_DROPBOX_SEND_FILE "Dropbox/Send/File"
+
+#endif //M_DROPBOX_H_
\ No newline at end of file |