blob: d0266942a7a02d1446adefe07feb878c40cac96a (
plain)
1
2
3
4
5
6
7
8
9
10
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_
|