summaryrefslogtreecommitdiff
path: root/plugins/ExternalAPI/m_dropbox.h
blob: 5077f488af60ae0b2bea20923e297e27d334da81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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_