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

mshtml.idl: Added HTMLTableCell coclass declaration.

parent c84111de
......@@ -32,13 +32,13 @@
WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
typedef struct {
struct HTMLTableCell {
HTMLElement element;
IHTMLTableCell IHTMLTableCell_iface;
nsIDOMHTMLTableCellElement *nscell;
} HTMLTableCell;
};
static inline HTMLTableCell *impl_from_IHTMLTableCell(IHTMLTableCell *iface)
{
......
......@@ -18472,6 +18472,26 @@ methods:
}
/*****************************************************************************
* HTMLTableCell coclass
*/
[
noncreatable,
uuid(3050f246-98b5-11cf-bb82-00aa00bdce0b)
]
coclass HTMLTableCell
{
[default] dispinterface DispHTMLTableCell;
[source, default] dispinterface HTMLTextContainerEvents;
[source] dispinterface HTMLTextContainerEvents2;
WINE_HTMLELEMENT_INTERFACES;
interface IHTMLControlElement;
interface IHTMLTextContainer;
interface IHTMLTableCell;
/* interface IHTMLTableCell2; */
/* interface IHTMLTableCell3; */
}
/*****************************************************************************
* IHTMLScriptElement interface
*/
[
......
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