mshtml.idl: Added HTMLLinkElement coclass declaration.

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Jacek Caban 2017-04-13 16:05:11 +02:00 committed by Alexandre Julliard
parent 327a77c1c2
commit ab0e68a95e
2 changed files with 22 additions and 2 deletions

View File

@ -33,12 +33,12 @@
WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
typedef struct {
struct HTMLLinkElement {
HTMLElement element;
IHTMLLinkElement IHTMLLinkElement_iface;
nsIDOMHTMLLinkElement *nslink;
} HTMLLinkElement;
};
static inline HTMLLinkElement *impl_from_IHTMLLinkElement(IHTMLLinkElement *iface)
{

View File

@ -7679,6 +7679,26 @@ methods:
BSTR ie8_href();
}
/*****************************************************************************
* HTMLLinkElement coclass
*/
[
noncreatable,
uuid(3050f277-98b5-11cf-bb82-00aa00bdce0b)
]
coclass HTMLLinkElement
{
[default] dispinterface DispHTMLLinkElement;
/* [source, default] dispinterface HTMLLinkElementEvents; */
/* [source] dispinterface HTMLLinkElementEvents2; */
WINE_HTMLELEMENT_INTERFACES;
interface IHTMLLinkElement;
interface IHTMLLinkElement2;
interface IHTMLLinkElement3;
interface IHTMLLinkElement4;
/* interface IHTMLLinkElement5; */
}
/*****************************************************************************
* IHTMLTxtRange interface
*/