Commit 0636249b authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml.idl: Added HTMLAnchorElement coclass declaration.

parent abdec32f
......@@ -35,13 +35,13 @@
WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
typedef struct {
struct HTMLAnchorElement {
HTMLElement element;
IHTMLAnchorElement IHTMLAnchorElement_iface;
nsIDOMHTMLAnchorElement *nsanchor;
} HTMLAnchorElement;
};
static HRESULT navigate_href_new_window(HTMLElement *element, nsAString *href_str, const WCHAR *target)
{
......
......@@ -9794,6 +9794,24 @@ methods:
}
/*****************************************************************************
* HTMLAnchorElement coclass
*/
[
noncreatable,
uuid(3050f248-98b5-11cf-bb82-00aa00bdce0b)
]
coclass HTMLAnchorElement
{
[default] dispinterface DispHTMLAnchorElement;
/* [source, default] dispinterface HTMLAnchorEvents; */
/* [source] dispinterface HTMLAnchorEvents2; */
WINE_HTMLDATAELEMENT_INTERFACES;
interface IHTMLAnchorElement;
/* interface IHTMLAnchorElement2; */
/* interface IHTMLAnchorElement3; */
}
/*****************************************************************************
* IHTMLAreaElement interface
*/
[
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment