blob: 9207546c234484ba06836bd7283d18a61b2e8313 (
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
44
|
#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 (can be NULL)
// 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
const wchar_t *serverFolder; // server folder in witch file will be placed (can be NULL)
};
struct CFUPLOADRESULT
{
char **links;
wchar_t *description;
};
// upload file on cloud service
// wParam = (WPARAM)(const CFUPLOADDATA*)uploadData
// lParam = (LPARAM)(char CFUPLOADRESULT*)uploadResult (can be NULL)
// returns 0 on success, nonzero on failure
#define MS_CLOUDFILE_UPLOAD "CloudFile/Upload"
#endif //M_CLOUDFILE_H_
|