Jacek Caban : mshtml.idl: Added IHTMLHtmlElement declaration.

Alexandre Julliard julliard at wine.codeweavers.com
Thu Mar 31 11:42:57 CDT 2016


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

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Thu Mar 31 14:50:54 2016 +0200

mshtml.idl: Added IHTMLHtmlElement declaration.

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

---

 include/mshtmdid.h |  3 +++
 include/mshtml.idl | 38 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 41 insertions(+)

diff --git a/include/mshtmdid.h b/include/mshtmdid.h
index 7e010c6..ac0a5e2 100644
--- a/include/mshtmdid.h
+++ b/include/mshtmdid.h
@@ -2684,6 +2684,9 @@
 /* IHTMLSelectElement4 */
 #define DISPID_IHTMLSELECTELEMENT4_NAMEDITEM  DISPID_COLLECTION+6
 
+/* IHTMLHtmlElement */
+#define DISPID_IHTMLHTMLELEMENT_VERSION  DISPID_HEDELEMS+1
+
 /* IHTMLHeadElement */
 #define DISPID_IHTMLHEADELEMENT_PROFILE  DISPID_HEDELEMS+1
 
diff --git a/include/mshtml.idl b/include/mshtml.idl
index 05f79ef..e068912 100644
--- a/include/mshtml.idl
+++ b/include/mshtml.idl
@@ -10724,6 +10724,24 @@ methods:
 }
 
 /*****************************************************************************
+ *    IHTMLHtmlElement interface
+ */
+[
+    odl,
+    oleautomation,
+    dual,
+    uuid(3050f81c-98b5-11cf-bb82-00aa00bdce0b)
+]
+interface IHTMLHtmlElement : IDispatch
+{
+    [propput, id(DISPID_IHTMLHTMLELEMENT_VERSION), displaybind, bindable]
+    HRESULT version([in] BSTR v);
+
+    [propget, id(DISPID_IHTMLHTMLELEMENT_VERSION), displaybind, bindable]
+    HRESULT version([out, retval] BSTR *p);
+}
+
+/*****************************************************************************
  *    IHTMLHeadElement interface
  */
 [
@@ -10856,6 +10874,26 @@ interface IHTMLMetaElement3 : IDispatch
 }
 
 /*****************************************************************************
+ *    DispHTMLHtmlElement interface
+ */
+[
+    hidden,
+    uuid(3050f560-98b5-11cf-bb82-00aa00bdce0b)
+]
+dispinterface DispHTMLHtmlElement
+{
+properties:
+methods:
+    WINE_HTMLELEMENT_DISPINTERFACE_DECL;
+
+    [propput, id(DISPID_IHTMLHTMLELEMENT_VERSION), displaybind, bindable]
+    void version(BSTR v);
+
+    [propget, id(DISPID_IHTMLHTMLELEMENT_VERSION), displaybind, bindable]
+    BSTR version();
+}
+
+/*****************************************************************************
  *    DispHTMLHeadElement interface
  */
 [




More information about the wine-cvs mailing list