Jacek Caban : mshtml.idl: Added HTMLTableRow coclass declaration.

Alexandre Julliard julliard at winehq.org
Thu Apr 20 16:41:34 CDT 2017


Module: wine
Branch: master
Commit: c84111de12369cb1eaa64706b95de1122946e6de
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=c84111de12369cb1eaa64706b95de1122946e6de

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Thu Apr 20 16:09:14 2017 +0200

mshtml.idl: Added HTMLTableRow coclass declaration.

Signed-off-by: Jacek Caban <jacek at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/mshtml/htmltablerow.c |  4 ++--
 include/mshtml.idl         | 20 ++++++++++++++++++++
 2 files changed, 22 insertions(+), 2 deletions(-)

diff --git a/dlls/mshtml/htmltablerow.c b/dlls/mshtml/htmltablerow.c
index 1604dcf..82f7115 100644
--- a/dlls/mshtml/htmltablerow.c
+++ b/dlls/mshtml/htmltablerow.c
@@ -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)
 {
diff --git a/include/mshtml.idl b/include/mshtml.idl
index 4c7e095..a1edef2 100644
--- a/include/mshtml.idl
+++ b/include/mshtml.idl
@@ -18315,6 +18315,26 @@ methods:
 }
 
 /*****************************************************************************
+ *    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
  */
 [




More information about the wine-cvs mailing list