From 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d Mon Sep 17 00:00:00 2001 From: Jef Date: Tue, 24 Sep 2024 14:54:57 +0200 Subject: Initial community commit --- Src/Winamp/setup/setup_api.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Src/Winamp/setup/setup_api.h (limited to 'Src/Winamp/setup/setup_api.h') 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 + + +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 -- cgit