blob: a3a84735c46e304fc43ee5504ba599204d3c55fd (
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
|
#ifndef _CLOUDFILE_YANDEX_H_
#define _CLOUDFILE_YANDEX_H_
class CYandexService : public CCloudService
{
private:
static unsigned RequestAccessTokenThread(void *owner, void *param);
static unsigned __stdcall RevokeAccessTokenThread(void *param);
void HandleJsonError(JSONNode &node);
void GetUploadUrl(char *path, char *url);
void UploadFile(const char *url, const char *data, size_t size);
void CreateFolder(const char *path);
void CreateSharedLink(const char *path, char *url);
public:
CYandexService(HNETLIBUSER hConnection);
const char* GetModule() const;
const wchar_t* GetText() const;
HANDLE GetIcon() const;
bool IsLoggedIn();
void Login();
void Logout();
UINT Upload(FileTransferParam *ftp);
};
#endif //_CLOUDFILE_YANDEX_H_
|