diff options
Diffstat (limited to 'Src/Winamp/setup/setup_api.h')
-rw-r--r-- | Src/Winamp/setup/setup_api.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Src/Winamp/setup/setup_api.h b/Src/Winamp/setup/setup_api.h new file mode 100644 index 00000000..8ed8c1b6 --- /dev/null +++ b/Src/Winamp/setup/setup_api.h @@ -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
\ No newline at end of file |