aboutsummaryrefslogtreecommitdiff
path: root/Src/Winamp/setup/sjob_register.h
blob: b87eb2e9ef1d29041f70e936ae5133915bc422cc (plain) (blame)
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
#ifndef WINAMP_REGISTER_SETUP_JOB_HEADER
#define WINAMP_REGISTER_SETUP_JOB_HEADER

#include "./ifc_setupjob.h"

class setup_job_register: public ifc_setupjob
{

public:
	setup_job_register();
	virtual ~setup_job_register();

public:
	size_t AddRef();
	size_t Release();
	HRESULT Execute(HWND hwndText);
	HRESULT Cancel(HWND hwndText);
	HRESULT IsCancelSupported();
private:
	size_t ref;
	HWND hwndHttp;

protected:
	RECVS_DISPATCH;
};


#endif //WINAMP_REGISTER_SETUP_JOB_HEADER