mshtml.idl: Added HTMLTitleElement 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-20 16:08:28 +02:00 committed by Alexandre Julliard
parent 3c7fee39d3
commit c80bd90ab0
2 changed files with 18 additions and 2 deletions

View File

@ -32,11 +32,11 @@
WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
typedef struct {
struct HTMLTitleElement {
HTMLElement element;
IHTMLTitleElement IHTMLTitleElement_iface;
} HTMLTitleElement;
};
static inline HTMLTitleElement *impl_from_IHTMLTitleElement(IHTMLTitleElement *iface)
{

View File

@ -11727,6 +11727,22 @@ methods:
BSTR text();
}
/*****************************************************************************
* HTMLTitleElement coclass
*/
[
noncreatable,
uuid(3050f284-98b5-11cf-bb82-00aa00bdce0b)
]
coclass HTMLTitleElement
{
[default] dispinterface DispHTMLTitleElement;
[source, default] dispinterface HTMLElementEvents;
[source] dispinterface HTMLElementEvents2;
WINE_HTMLELEMENT_INTERFACES;
interface IHTMLTitleElement;
}
/*****************************************************************************
* DispHTMLMetaElement dispinterface
*/