Alistair Leslie-Hughes : include: Add IConvertType interface.

Alexandre Julliard julliard at winehq.org
Tue Nov 10 15:30:24 CST 2020


Module: wine
Branch: master
Commit: 34155d099835d49941793e3364be975a4a41a486
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=34155d099835d49941793e3364be975a4a41a486

Author: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
Date:   Tue Nov 10 20:29:58 2020 +1100

include: Add IConvertType interface.

Signed-off-by: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/msdaps/usrmarshal.c | 13 +++++++++++++
 include/Makefile.in      |  1 +
 include/cvttyp.idl       | 50 ++++++++++++++++++++++++++++++++++++++++++++++++
 include/oledb.idl        |  1 +
 4 files changed, 65 insertions(+)

diff --git a/dlls/msdaps/usrmarshal.c b/dlls/msdaps/usrmarshal.c
index 9eb14147690..fa086290061 100644
--- a/dlls/msdaps/usrmarshal.c
+++ b/dlls/msdaps/usrmarshal.c
@@ -1616,3 +1616,16 @@ HRESULT __RPC_STUB ICommandProperties_SetProperties_Stub(ICommandProperties* Thi
     FIXME("(%p)->(%d %p %d %p %p): stub\n", This, count, propertyset, total, propstatus, error);
     return E_NOTIMPL;
 }
+
+HRESULT CALLBACK IConvertType_CanConvert_Proxy(IConvertType* This, DBTYPE from, DBTYPE to, DBCONVERTFLAGS flags)
+{
+    FIXME("(%p)->(%d %d 0x%08x): stub\n", This, from, to, flags);
+    return E_NOTIMPL;
+}
+
+HRESULT __RPC_STUB IConvertType_CanConvert_Stub(IConvertType* This, DBTYPE from, DBTYPE to,
+    DBCONVERTFLAGS flags, IErrorInfo **error)
+{
+    FIXME("(%p)->(%d %d 0x%08x %p): stub\n", This, from, to, flags, error);
+    return E_NOTIMPL;
+}
diff --git a/include/Makefile.in b/include/Makefile.in
index c9c8ebe8bb5..3ccacdaeecf 100644
--- a/include/Makefile.in
+++ b/include/Makefile.in
@@ -91,6 +91,7 @@ SOURCES = \
 	ctxtcall.idl \
 	custcntl.h \
 	cvconst.h \
+	cvttyp.idl \
 	d2d1.idl \
 	d2d1_1.idl \
 	d2d1_2.idl \
diff --git a/include/cvttyp.idl b/include/cvttyp.idl
new file mode 100644
index 00000000000..87bc385a5ba
--- /dev/null
+++ b/include/cvttyp.idl
@@ -0,0 +1,50 @@
+/*
+ * Copyright (C) 2020 Alistair Leslie-Hughes
+ *
+ * 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
+ */
+
+#if 0
+#pragma makedep install
+#endif
+
+[
+    object,
+    uuid(0c733a88-2a1c-11ce-ade5-00aa0044773d),
+    pointer_default(unique)
+]
+interface IConvertType : IUnknown
+{
+    typedef DWORD DBCONVERTFLAGS;
+
+    enum DBCONVERTFLAGSENUM
+    {
+        DBCONVERTFLAGS_COLUMN    = 0x000,
+        DBCONVERTFLAGS_PARAMETER = 0x001,
+    };
+
+    enum DBCONVERTFLAGSENUM20
+    {
+        DBCONVERTFLAGS_ISLONG        = 0x002,
+        DBCONVERTFLAGS_ISFIXEDLENGTH = 0x004,
+        DBCONVERTFLAGS_FROMVARIANT   = 0x008,
+    };
+
+    [local]
+    HRESULT CanConvert([in] DBTYPE from, [in] DBTYPE to, [in] DBCONVERTFLAGS flags);
+
+    [call_as(CanConvert)]
+    HRESULT RemoteCanConvert([in] DBTYPE from, [in] DBTYPE to, [in] DBCONVERTFLAGS flags, [out] IErrorInfo **error);
+}
diff --git a/include/oledb.idl b/include/oledb.idl
index 4370c7f6bcc..c56460262f5 100644
--- a/include/oledb.idl
+++ b/include/oledb.idl
@@ -72,6 +72,7 @@ typedef DWORD_PTR DBHASHVALUE;
 #include "getdts.idl"
 #include "cmdstrm.idl"
 #include "cmdprp.idl"
+#include "cvttyp.idl"
 
 cpp_quote("#include <accctrl.h>")
 




More information about the wine-cvs mailing list