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:
parent
3c7fee39d3
commit
c80bd90ab0
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue