Commit d1282dce authored by Benjamin Arai's avatar Benjamin Arai Committed by Alexandre Julliard

oleaut32: Add support for handling TKIND_COCLASS in userdefined_to_variantvt.

parent d0ca58ba
......@@ -5011,6 +5011,10 @@ static HRESULT userdefined_to_variantvt(ITypeInfo *tinfo, const TYPEDESC *tdesc,
*vt |= VT_DISPATCH;
break;
case TKIND_COCLASS:
*vt |= VT_UNKNOWN;
break;
case TKIND_RECORD:
FIXME("TKIND_RECORD unhandled.\n");
hr = E_NOTIMPL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment