Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
24
Src/Winamp/setup/setup_api.h
Normal file
24
Src/Winamp/setup/setup_api.h
Normal file
|
@ -0,0 +1,24 @@
|
|||
#ifndef WINAMP_SETUP_API_HEADER
|
||||
#define WINAMP_SETUP_API_HEADER
|
||||
|
||||
#include <windows.h>
|
||||
|
||||
|
||||
class __declspec(novtable) WASetupAPI
|
||||
{
|
||||
protected:
|
||||
WASetupAPI(void){};
|
||||
virtual ~WASetupAPI(void) = 0;
|
||||
public:
|
||||
virtual INT GetInterfaceVersion(void) = 0;
|
||||
virtual LPCWSTR GetName(BOOL bShort) = 0;
|
||||
virtual HICON GetIcon(BOOL bSmall) = 0;
|
||||
virtual BOOL Initialize(void) = 0;
|
||||
virtual BOOL Finish(BOOL bCancelled) = 0;
|
||||
virtual HWND CreateView(HWND hwndParent) = 0;
|
||||
virtual HWND GetHWND(void) = 0;
|
||||
};
|
||||
|
||||
|
||||
|
||||
#endif //WINAMP_SETUP_API_HEADER
|
Loading…
Add table
Add a link
Reference in a new issue