mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-10 11:59:58 -05:00
Initial community commit
This commit is contained in:
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
|
Reference in New Issue
Block a user