diff options
Diffstat (limited to 'plugins/ExternalAPI')
-rw-r--r-- | plugins/ExternalAPI/m_dropbox.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/plugins/ExternalAPI/m_dropbox.h b/plugins/ExternalAPI/m_dropbox.h new file mode 100644 index 0000000000..5077f488af --- /dev/null +++ b/plugins/ExternalAPI/m_dropbox.h @@ -0,0 +1,18 @@ +#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"
+
+//upload file on Dropbox
+//wParam = (MCONTACT)hContact
+//lParam = (LPARAM)(const wchar_t*)wszPath
+//returns 0 on success or nonzero on failure
+//returns immediately, before the file or folder is uploaded
+#define MS_DROPBOX_SEND_FILEW "Dropbox/Send/FileW"
+
+#endif //M_DROPBOX_H_
\ No newline at end of file |