mshtml: Remove unused functions.

This commit is contained in:
Jacek Caban 2023-09-22 11:19:49 +02:00 committed by Alexandre Julliard
parent 3d32cb9cbe
commit 3b5aef662f

View file

@ -441,11 +441,6 @@ static const IHTMLTableCellVtbl HTMLTableCellVtbl = {
HTMLTableCell_get_cellIndex
};
static inline HTMLTableCell *HTMLTableCell_from_HTMLDOMNode(HTMLDOMNode *iface)
{
return CONTAINING_RECORD(iface, HTMLTableCell, element.node);
}
static inline HTMLTableCell *HTMLTableCell_from_DispatchEx(DispatchEx *iface)
{
return CONTAINING_RECORD(iface, HTMLTableCell, element.node.event_target.dispex);
@ -871,11 +866,6 @@ static const IHTMLTableRowVtbl HTMLTableRowVtbl = {
HTMLTableRow_deleteCell
};
static inline HTMLTableRow *HTMLTableRow_from_HTMLDOMNode(HTMLDOMNode *iface)
{
return CONTAINING_RECORD(iface, HTMLTableRow, element.node);
}
static inline HTMLTableRow *HTMLTableRow_from_DispatchEx(DispatchEx *iface)
{
return CONTAINING_RECORD(iface, HTMLTableRow, element.node.event_target.dispex);
@ -1875,11 +1865,6 @@ static const IHTMLTable3Vtbl HTMLTable3Vtbl = {
HTMLTable3_get_summary
};
static inline HTMLTable *impl_from_HTMLDOMNode(HTMLDOMNode *iface)
{
return CONTAINING_RECORD(iface, HTMLTable, element.node);
}
static inline HTMLTable *impl_from_DispatchEx(DispatchEx *iface)
{
return CONTAINING_RECORD(iface, HTMLTable, element.node.event_target.dispex);