mshtml.idl: Added HTMLAnchorElement 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:45 +02:00 committed by Alexandre Julliard
parent abdec32f68
commit 0636249b0e
2 changed files with 20 additions and 2 deletions

View File

@ -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)
{

View File

@ -9793,6 +9793,24 @@ methods:
BSTR ie8_href();
}
/*****************************************************************************
* 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
*/