blob: 6d2542a7c4d78bf53a38db961e08da8dd2d78031 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef NULLSOFT_BACKGROUNDDOWNLOADERH
#define NULLSOFT_BACKGROUNDDOWNLOADERH
#include <windows.h>
class BackgroundDownloader
{
public:
//void SetSpeed(int kilobytesPerSecond);
void Download(const wchar_t *url, const wchar_t *savePath,
const wchar_t *channel, const wchar_t *item, __time64_t publishDate);
//void Shutdown();
};
extern BackgroundDownloader downloader;
#endif
|