[PATCH v3 1/5] include: Add initial ieautomation.idl

Zebediah Figura zfigura at codeweavers.com
Thu Aug 10 13:52:29 CDT 2017


Signed-off-by: Zebediah Figura <zfigura at codeweavers.com>
---
 include/Makefile.in      |  1 +
 include/ieautomation.idl | 33 +++++++++++++++++++++++++++++++++
 2 files changed, 34 insertions(+)
 create mode 100644 include/ieautomation.idl

diff --git a/include/Makefile.in b/include/Makefile.in
index 81c646e8238..454ac80913c 100644
--- a/include/Makefile.in
+++ b/include/Makefile.in
@@ -80,6 +80,7 @@ IDL_SRCS = \
 	httprequest.idl \
 	iads.idl \
 	icftypes.idl \
+	ieautomation.idl \
 	iextag.idl \
 	iimgctx.idl \
 	imnact.idl \
diff --git a/include/ieautomation.idl b/include/ieautomation.idl
new file mode 100644
index 00000000000..9bcbc3777dd
--- /dev/null
+++ b/include/ieautomation.idl
@@ -0,0 +1,33 @@
+/*
+ * Copyright 2017 Zebediah Figura for Codeweavers
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+import "unknwn.idl";
+
+cpp_quote("#define INTERNETEXPLORERCONFIGURATION_HOST   0x00000001")
+
+[
+    object,
+    uuid(acc84351-04ff-44f9-b23f-655ed168c6d5),
+    pointer_default(unique)
+]
+interface IInternetExplorerManager : IUnknown
+{
+    HRESULT CreateObject([in] DWORD config, [in, unique, string] LPCWSTR url, [in] REFIID riid, [out, iid_is(riid)] void **ppv);
+}
+
+cpp_quote("DEFINE_GUID(CLSID_InternetExplorerManager, 0xdf4fcc34, 0x067a, 0x4e0a, 0x83,0x52, 0x4a,0x1a,0x50,0x95,0x34,0x6e);")
-- 
2.13.4




More information about the wine-patches mailing list