locka%iol.ie 74455c95c4 Updated to reflect changes in plugin api
git-svn-id: svn://10.0.0.236/trunk@20695 18797224-902f-48f8-a5cc-f745e15eee43
1999-02-14 13:18:42 +00:00

26 lines
569 B
C++

#ifndef ACTIVEXPLUGIN_H
#define ACTIVEXPLUGIN_H
class CActiveXPlugin : public nsIPlugin
{
protected:
virtual ~CActiveXPlugin();
public:
CActiveXPlugin();
// nsISupports overrides
NS_DECL_ISUPPORTS
// nsIFactory overrides
NS_IMETHOD CreateInstance(nsISupports *aOuter, REFNSIID aIID, void **aResult);
NS_IMETHOD LockFactory(PRBool aLock);
// nsIPlugin overrides
NS_IMETHOD Initialize();
NS_IMETHOD Shutdown(void);
NS_IMETHOD GetMIMEDescription(const char* *resultingDesc);
NS_IMETHOD GetValue(nsPluginVariable variable, void *value);
};
#endif