blob: baef5cd8ef48cd0669bde69428521c8ec6086438 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef NULLSOFT_DOWNLOADSDIALOGH
#define NULLSOFT_DOWNLOADSDIALOGH
#include "DownloadStatus.h"
class OmService;
HWND CALLBACK DownloadDialog_Create(HWND hParent, OmService *service);
void DownloadsUpdated();
void DownloadsUpdated( DownloadToken token, const DownloadedFile *f );
void DownloadsUpdated( const DownloadStatus::Status &s, DownloadToken token );
#endif
|