Jacek Caban : mshtml.idl: Added title element interfaces.

Alexandre Julliard julliard at winehq.org
Tue Jun 21 12:25:43 CDT 2011


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

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Tue Jun 21 13:47:40 2011 +0200

mshtml.idl: Added title element interfaces.

---

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

diff --git a/include/mshtmdid.h b/include/mshtmdid.h
index ad09bdb..6eaf7cd 100644
--- a/include/mshtmdid.h
+++ b/include/mshtmdid.h
@@ -2288,6 +2288,9 @@
 /* IHTMLHeadElement2 */
 #define DISPID_IHTMLHEADELEMENT2_IE8_PROFILE  DISPID_IE8_HEAD
 
+/* IHTMLTitleElement */
+#define DISPID_IHTMLTITLEELEMENT_TEXT  DISPID_A_VALUE
+
 /* IHTMLRect */
 #define DISPID_IHTMLRECT_LEFT    DISPID_OMRECT+1
 #define DISPID_IHTMLRECT_TOP     DISPID_OMRECT+2
diff --git a/include/mshtml.idl b/include/mshtml.idl
index 575f15f..a70f165 100644
--- a/include/mshtml.idl
+++ b/include/mshtml.idl
@@ -9223,6 +9223,24 @@ interface IHTMLHeadElement2 : IDispatch
 }
 
 /*****************************************************************************
+ *    IHTMLTitleElement interface
+ */
+[
+    odl,
+    oleautomation,
+    dual,
+    uuid(3050f322-98b5-11cf-bb82-00aa00bdce0b)
+]
+interface IHTMLTitleElement : IDispatch
+{
+    [propput, id(DISPID_IHTMLTITLEELEMENT_TEXT), bindable]
+    HRESULT text([in] BSTR v);
+
+    [propget, id(DISPID_IHTMLTITLEELEMENT_TEXT), bindable]
+    HRESULT text([retval, out] BSTR *p);
+}
+
+/*****************************************************************************
  *    DispHTMLHeadElement interface
  */
 [
@@ -9249,6 +9267,26 @@ methods:
 }
 
 /*****************************************************************************
+ *    DispHTMLTitleElement interface
+ */
+[
+    hidden,
+    uuid(3050f516-98b5-11cf-bb82-00aa00bdce0b)
+]
+dispinterface DispHTMLTitleElement
+{
+properties:
+methods:
+    WINE_HTMLELEMENT_DISPINTERFACE_DECL;
+
+    [propput, id(DISPID_IHTMLTITLEELEMENT_TEXT), bindable]
+    void text(BSTR v);
+
+    [propget, id(DISPID_IHTMLTITLEELEMENT_TEXT), bindable]
+    BSTR text();
+}
+
+/*****************************************************************************
  *    DispHTMLUnknownElement interface
  */
 [




More information about the wine-cvs mailing list