mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-18 01:45:46 -04:00
Initial community commit
This commit is contained in:
19
Src/Plugins/Input/in_flv/BackgroundDownloader.h
Normal file
19
Src/Plugins/Input/in_flv/BackgroundDownloader.h
Normal file
@ -0,0 +1,19 @@
|
||||
#pragma once
|
||||
#include <bfc/platform/types.h>
|
||||
|
||||
class api_httpreceiver;
|
||||
|
||||
class Downloader
|
||||
{
|
||||
public:
|
||||
class DownloadCallback
|
||||
{
|
||||
public:
|
||||
virtual int OnConnect(api_httpreceiver *http)=0;
|
||||
virtual int OnData(void *buffer, size_t bufferSize)=0;
|
||||
};
|
||||
|
||||
|
||||
bool Download(const char *url, DownloadCallback *callback, uint64_t startPosition = 0);
|
||||
|
||||
};
|
Reference in New Issue
Block a user