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

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


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

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

mshtml.idl: Added HTMLTableCell coclass declaration.

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

---

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

diff --git a/dlls/mshtml/htmltablecell.c b/dlls/mshtml/htmltablecell.c
index 12895a2..ef903dd 100644
--- a/dlls/mshtml/htmltablecell.c
+++ b/dlls/mshtml/htmltablecell.c
@@ -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)
 {
diff --git a/include/mshtml.idl b/include/mshtml.idl
index a1edef2..4e5503e 100644
--- a/include/mshtml.idl
+++ b/include/mshtml.idl
@@ -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
  */
 [




More information about the wine-cvs mailing list