Jacek Caban : mshtml.idl: Added IElementSelector declaration.

Alexandre Julliard julliard at winehq.org
Wed Jun 15 11:39:42 CDT 2016


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

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Wed Jun 15 14:22:27 2016 +0200

mshtml.idl: Added IElementSelector declaration.

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

---

 include/mshtml.idl | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/include/mshtml.idl b/include/mshtml.idl
index c73a0f5..1fe30fd 100644
--- a/include/mshtml.idl
+++ b/include/mshtml.idl
@@ -6100,6 +6100,28 @@ interface IHTMLElement4 : IDispatch
     [propget, id(DISPID_IHTMLELEMENT4_ONFOCUSOUT), displaybind, bindable] \
     VARIANT onfocusout()
 
+/*****************************************************************************
+ *    IElementSelector interface
+ */
+[
+    odl,
+    oleautomation,
+    dual,
+    uuid(30510463-98b5-11cf-bb82-00aa00bdce0b)
+]
+interface IElementSelector : IDispatch
+{
+    [id(DISPID_IELEMENTSELECTOR_QUERYSELECTOR)]
+    HRESULT querySelector(
+        [in] BSTR v,
+        [out, retval] IHTMLElement **pel);
+
+    [id(DISPID_IELEMENTSELECTOR_QUERYSELECTORALL)]
+    HRESULT querySelectorAll(
+        [in] BSTR v,
+        [out, retval] IHTMLDOMChildrenCollection **pel);
+}
+
 #define WINE_IELEMENTSELECTOR_DISPINTERFACE_DECL                \
     [id(DISPID_IELEMENTSELECTOR_QUERYSELECTOR)]                 \
     IHTMLElement *querySelector([in] BSTR v);                   \




More information about the wine-cvs mailing list