Tag not monitored by Microsoft.
Can I extend MMCCtrl object's interface via C++?
I have a legacy mmc C++ application that uses MMCCtrl object within a DHTML taskpad:
<head> <object id="taskctrl" classid="CLSID:545AE700-50BF-11D1-9FE9-00600832DB4A"> </object> </head>
I expected that I could add some methods and override MMCCtrl's IDispatch to make them visible to JavaScript. But I can't find any info on C++ interfaces that are used for MMCCtrl (or any C++ documentation at all for MMC in that regard).
Moreover, IComponent interface does not seem be the interface I need, since it does not provide any of the MMCCtrl's methods that are described here. And it also does not inherit from IDispatch...
So is it even possible to add methods to MMCCtrl's interface for a particular mmc application?
Does MMCCtrl work in some other way than implementing IDispatch?