Benjamin Arai : oleaut32: Add support for handling TKIND_COCLASS in userdefined_to_variantvt.

Alexandre Julliard julliard at wine.codeweavers.com
Tue Aug 22 05:55:30 CDT 2006


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

Author: Benjamin Arai <me at benjaminarai.com>
Date:   Mon Aug 21 17:50:28 2006 -0700

oleaut32: Add support for handling TKIND_COCLASS in userdefined_to_variantvt.

---

 dlls/oleaut32/typelib.c |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/dlls/oleaut32/typelib.c b/dlls/oleaut32/typelib.c
index d75b665..b680fac 100644
--- a/dlls/oleaut32/typelib.c
+++ b/dlls/oleaut32/typelib.c
@@ -5011,6 +5011,10 @@ static HRESULT userdefined_to_variantvt(
         *vt |= VT_DISPATCH;
         break;
 
+    case TKIND_COCLASS:
+        *vt |= VT_UNKNOWN;
+        break;
+
     case TKIND_RECORD:
         FIXME("TKIND_RECORD unhandled.\n");
         hr = E_NOTIMPL;




More information about the wine-cvs mailing list