Commit 500c41b7 authored by Robert Shearman's avatar Robert Shearman Committed by Alexandre Julliard

Support VT_BYREF|VT_I4 in _copy_arg.

parent d2e2e851
......@@ -4597,6 +4597,10 @@ _copy_arg( ITypeInfo2 *tinfo, TYPEDESC *tdesc,
memcpy(argpos, &V_I4(arg), 4);
hres = S_OK;
break;
case VT_BYREF|VT_I4:
memcpy(argpos, V_I4REF(arg), 4);
hres = S_OK;
break;
default:
FIXME("vt 0x%x -> TKIND_ENUM unhandled.\n",V_VT(arg));
hres = E_FAIL;
......
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