blob: 24a82a63c9069560b87ca1948bc68a297a26aaf9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
#ifndef M_CLOUDFILE_H_
#define M_CLOUDFILE_H_
struct CFSERVICEINFO
{
const char *accountName;
const wchar_t *userName;
};
// get cloud file service info by account name
// wParam = (WPARAM)(const char*)accountName (can be NULL)
// lParam = (LPARAM)(CFSERVICEINFO*)serviceInfo
// returns 0 on success, nonzero on failure
#define MS_CLOUDFILE_GETSERVICE "CloudFile/GetService"
// return nonzero to stop enum
typedef int(*enumCFServiceFunc)(const CFSERVICEINFO *serviceInfo, void *param);
// get list of cloud file services
// wParam = (WPARAM)(enumCFServiceFunc)enumFunc
// lParam = (LPARAM)(void*)param (can be NULL)
// returns 0 on success, nonzero on failure
#define MS_CLOUDFILE_ENUMSERVICES "CloudFile/EnumServices"
struct CFUPLOADDATA
{
const char *accountName; // cloud service to upload (can be NULL)
const wchar_t *localPath; // local path to file
const wchar_t *serverFolder; // server folder in witch file will be placed (can be NULL)
};
struct CFUPLOADRESULT
{
char *link; // link to file in cloud service (needs to be freed)
};
// upload file on cloud service
// wParam = (WPARAM)(const CFUPLOADDATA*)uploadData
// lParam = (LPARAM)(const CFUPLOADRESULT*)uploadResult (can be NULL)
// returns 0 on success, nonzero on failure
#define MS_CLOUDFILE_UPLOAD "CloudFile/Upload"
#endif //M_CLOUDFILE_H_
|