mshtml.idl: Added HTMLTableCell coclass declaration.

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Jacek Caban 2017-04-20 16:09:21 +02:00 committed by Alexandre Julliard
parent c84111de12
commit 16189147c6
2 changed files with 22 additions and 2 deletions

View File

@ -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)
{

View File

@ -18471,6 +18471,26 @@ methods:
BSTR ie9_chOff();
}
/*****************************************************************************
* 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
*/