Commit 72da0a2d authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

oleaut32: Handle VT_DATE in serialize_param()/deserialize_param().

parent 5eb7a44a
......@@ -615,6 +615,7 @@ serialize_param(
vartype = VT_SAFEARRAY;
switch (vartype) {
case VT_DATE:
case VT_I8:
case VT_UI8:
case VT_R8:
......@@ -911,6 +912,7 @@ deserialize_param(
}
return S_OK;
}
case VT_DATE:
case VT_I8:
case VT_UI8:
case VT_R8:
......
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