mshtml.idl: Added HTMLAreaElement 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-21 13:50:15 +02:00 committed by Alexandre Julliard
parent 2b8b15c22e
commit 331205d88c
2 changed files with 19 additions and 2 deletions

View file

@ -33,13 +33,13 @@
WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
typedef struct {
struct HTMLAreaElement {
HTMLElement element;
IHTMLAreaElement IHTMLAreaElement_iface;
nsIDOMHTMLAreaElement *nsarea;
} HTMLAreaElement;
};
static inline HTMLAreaElement *impl_from_IHTMLAreaElement(IHTMLAreaElement *iface)
{

View file

@ -10038,6 +10038,23 @@ methods:
BSTR ie8_href();
}
/*****************************************************************************
* HTMLAreaElement coclass
*/
[
noncreatable,
uuid(3050f283-98b5-11cf-bb82-00aa00bdce0b)
]
coclass HTMLAreaElement
{
[default] dispinterface DispHTMLAreaElement;
/* [source, default] dispinterface HTMLAreaEvents; */
/* [source] dispinterface HTMLAreaEvents2; */
WINE_HTMLELEMENT_INTERFACES;
interface IHTMLAreaElement;
/* interface IHTMLAreaElement2; */
}
/*****************************************************************************
* IHTMLLabelElement interface
*/