mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-18 06:15:47 -04:00
Initial community commit
This commit is contained in:
26
Src/Wasabi/api/skin/widgets/mb/mbsvc.h
Normal file
26
Src/Wasabi/api/skin/widgets/mb/mbsvc.h
Normal file
@ -0,0 +1,26 @@
|
||||
#ifndef _SVC_H
|
||||
#define _SVC_H
|
||||
|
||||
#include <api/service/svcs/svc_minibrowser.h>
|
||||
#include <bfc/ptrlist.h>
|
||||
#include <api/service/svc_enum.h>
|
||||
#include "iebrowser.h"
|
||||
|
||||
class MbSvc : public svc_miniBrowserI {
|
||||
public:
|
||||
MbSvc();
|
||||
~MbSvc();
|
||||
|
||||
static const char *getServiceName() { return "Internet Explorer ActiveX MiniBrowser Service"; }
|
||||
virtual int testQueryFormat(int queryformat) { return WaSvc::MINIBROWSER; }
|
||||
|
||||
virtual int testGuid(GUID g);
|
||||
virtual MiniBrowser *createMiniBrowser();
|
||||
virtual void destroyMiniBrowser(MiniBrowser *w);
|
||||
|
||||
private:
|
||||
|
||||
PtrList<BrowserWnd> browsers;
|
||||
};
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user