mshtml.idl: Added HTMLTableRow 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:14 +02:00 committed by Alexandre Julliard
parent e4a436ee5e
commit c84111de12
2 changed files with 22 additions and 2 deletions

View File

@ -32,13 +32,13 @@
WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
typedef struct {
struct HTMLTableRow {
HTMLElement element;
IHTMLTableRow IHTMLTableRow_iface;
nsIDOMHTMLTableRowElement *nsrow;
} HTMLTableRow;
};
static inline HTMLTableRow *impl_from_IHTMLTableRow(IHTMLTableRow *iface)
{

View File

@ -18314,6 +18314,26 @@ methods:
BSTR chOff();
}
/*****************************************************************************
* HTMLTableRow coclass
*/
[
noncreatable,
uuid(3050f26d-98b5-11cf-bb82-00aa00bdce0b)
]
coclass HTMLTableRow
{
[default] dispinterface DispHTMLTableRow;
/* [source, default] dispinterface HTMLControlElementEvents; */
/* [source] dispinterface HTMLControlElementEvents2; */
WINE_HTMLELEMENT_INTERFACES;
interface IHTMLTableRow;
/* interface IHTMLTableRowMetrics; */
/* interface IHTMLTableRow2; */
/* interface IHTMLTableRow3; */
/* interface IHTMLTableRow4; */
}
/*****************************************************************************
* DispHTMLTableCell dispinterface
*/