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:
parent
327a77c1c2
commit
ab0e68a95e
|
@ -33,12 +33,12 @@
|
||||||
|
|
||||||
WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
|
WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
|
||||||
|
|
||||||
typedef struct {
|
struct HTMLLinkElement {
|
||||||
HTMLElement element;
|
HTMLElement element;
|
||||||
IHTMLLinkElement IHTMLLinkElement_iface;
|
IHTMLLinkElement IHTMLLinkElement_iface;
|
||||||
|
|
||||||
nsIDOMHTMLLinkElement *nslink;
|
nsIDOMHTMLLinkElement *nslink;
|
||||||
} HTMLLinkElement;
|
};
|
||||||
|
|
||||||
static inline HTMLLinkElement *impl_from_IHTMLLinkElement(IHTMLLinkElement *iface)
|
static inline HTMLLinkElement *impl_from_IHTMLLinkElement(IHTMLLinkElement *iface)
|
||||||
{
|
{
|
||||||
|
|
|
@ -7679,6 +7679,26 @@ methods:
|
||||||
BSTR ie8_href();
|
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
|
* IHTMLTxtRange interface
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue