Commit 878af666 authored by Robert Shearman's avatar Robert Shearman Committed by Alexandre Julliard

oleaut: Support VT_CY in the typelib marshaller.

parent b3041ba6
......@@ -508,6 +508,7 @@ serialize_param(
return S_OK;
case VT_I8:
case VT_UI8:
case VT_CY:
hres = S_OK;
if (debugout) TRACE_(olerelay)("%lx%lx",arg[0],arg[1]);
if (writeit)
......@@ -825,6 +826,7 @@ deserialize_param(
}
case VT_I8:
case VT_UI8:
case VT_CY:
if (readit) {
hres = xbuf_get(buf,(LPBYTE)arg,8);
if (hres) ERR("Failed to read integer 8 byte\n");
......
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