Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
28
Src/Winamp/setup/sjob_register.h
Normal file
28
Src/Winamp/setup/sjob_register.h
Normal file
|
@ -0,0 +1,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
|
Loading…
Add table
Add a link
Reference in a new issue