mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-17 20:15:45 -04:00
Initial community commit
This commit is contained in:
24
Src/Plugins/Portable/pmp_wifi/SongDownloader.h
Normal file
24
Src/Plugins/Portable/pmp_wifi/SongDownloader.h
Normal file
@ -0,0 +1,24 @@
|
||||
#pragma once
|
||||
|
||||
#include "../Components/wac_downloadManager/DownloadCallbackT.h"
|
||||
|
||||
class SongDownloader : public DownloadCallbackT<SongDownloader>
|
||||
{
|
||||
public:
|
||||
SongDownloader(const wchar_t *filename, HANDLE done_event, void (*callback)(void *callbackContext, wchar_t *status), void *context);
|
||||
~SongDownloader();
|
||||
|
||||
void OnInit(DownloadToken token);
|
||||
void OnData(DownloadToken token, void *data, size_t datalen);
|
||||
void OnCancel(DownloadToken token);
|
||||
void OnError(DownloadToken token, int error);
|
||||
void OnFinish(DownloadToken token);
|
||||
|
||||
private:
|
||||
void (*callback)(void *callbackContext, wchar_t *status);
|
||||
void *context;
|
||||
HANDLE hFile, done_event;
|
||||
uint64_t content_length;
|
||||
uint64_t bytes_downloaded;
|
||||
|
||||
};
|
Reference in New Issue
Block a user