Huw Davies : include: Add opnrst.idl.

Alexandre Julliard julliard at winehq.org
Thu Jul 23 10:00:51 CDT 2009


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

Author: Huw Davies <huw at codeweavers.com>
Date:   Wed Jul 22 14:25:27 2009 +0100

include: Add opnrst.idl.

---

 include/Makefile.in  |    1 +
 include/oledb.idl    |    1 +
 include/opnrst.idl   |   47 +++++++++++++++++++++++++++++++++++++++++++++++
 tools/make_makefiles |    1 +
 4 files changed, 50 insertions(+), 0 deletions(-)

diff --git a/include/Makefile.in b/include/Makefile.in
index f53c1bb..716cec3 100644
--- a/include/Makefile.in
+++ b/include/Makefile.in
@@ -364,6 +364,7 @@ SRCDIR_INCLUDES = \
 	oleauto.h \
 	olectl.h \
 	oledlg.h \
+	opnrst.idl \
 	pdh.h \
 	pdhmsg.h \
 	pktdef.h \
diff --git a/include/oledb.idl b/include/oledb.idl
index 1683fb7..a2f70d5 100644
--- a/include/oledb.idl
+++ b/include/oledb.idl
@@ -29,3 +29,4 @@ typedef ULONG DBBYTEOFFSET;
 #include "dbcses.idl"
 #include "dbprop.idl"
 #include "dbinit.idl"
+#include "opnrst.idl"
diff --git a/include/opnrst.idl b/include/opnrst.idl
new file mode 100644
index 0000000..07c2380
--- /dev/null
+++ b/include/opnrst.idl
@@ -0,0 +1,47 @@
+/*
+ * Copyright (C) 2009 Huw Davies
+ *
+ * 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
+ */
+
+[
+    object,
+    uuid(0c733a69-2a1c-11ce-ade5-00aa0044773d),
+    pointer_default(unique)
+]
+interface IOpenRowset : IUnknown
+{
+    [local]
+    HRESULT OpenRowset([in] IUnknown *pUnkOuter,
+                       [in, unique] DBID *pTableID,
+                       [in, unique] DBID *pIndexID,
+                       [in] REFIID riid,
+                       [in] ULONG cPropertySets,
+                       [in, out, size_is(cPropertySets)] DBPROPSET rgPropertySets[],
+                       [out, iid_is(riid)] IUnknown **ppRowset);
+
+    [call_as(OpenRowset)]
+    HRESULT RemoteOpenRowset([in] IUnknown *pUnkOuter,
+                             [in, unique] DBID *pTableID,
+                             [in, unique] DBID *pIndexID,
+                             [in] REFIID riid,
+                             [in] ULONG cPropertySets,
+                             [in, unique, size_is(cPropertySets)] DBPROPSET *rgPropertySets,
+                             [in, out, unique, iid_is(riid)] IUnknown **ppRowset,
+                             [in] ULONG cTotalProps,
+                             [out, size_is(cTotalProps)] DBPROPSTATUS *rgPropStatus,
+                             [out] IErrorInfo **ppErrorInfoRem);
+
+}
diff --git a/tools/make_makefiles b/tools/make_makefiles
index fc836ee..8f9ca56 100755
--- a/tools/make_makefiles
+++ b/tools/make_makefiles
@@ -116,6 +116,7 @@ my %private_idl_headers = (
     "dbs.idl" => 1,
     "devenum.idl" => 1,
     "dyngraph.idl" => 1,
+    "opnrst.idl" => 1,
     "vmrender.idl" => 1,
     "wine/wined3d.idl" => 1,
     "wine/winedxgi.idl" => 1,




More information about the wine-cvs mailing list