Commit c80bd90a authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml.idl: Added HTMLTitleElement coclass declaration.

parent 3c7fee39
...@@ -32,11 +32,11 @@ ...@@ -32,11 +32,11 @@
WINE_DEFAULT_DEBUG_CHANNEL(mshtml); WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
typedef struct { struct HTMLTitleElement {
HTMLElement element; HTMLElement element;
IHTMLTitleElement IHTMLTitleElement_iface; IHTMLTitleElement IHTMLTitleElement_iface;
} HTMLTitleElement; };
static inline HTMLTitleElement *impl_from_IHTMLTitleElement(IHTMLTitleElement *iface) static inline HTMLTitleElement *impl_from_IHTMLTitleElement(IHTMLTitleElement *iface)
{ {
......
...@@ -11728,6 +11728,22 @@ methods: ...@@ -11728,6 +11728,22 @@ methods:
} }
/***************************************************************************** /*****************************************************************************
* 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 * DispHTMLMetaElement dispinterface
*/ */
[ [
......
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