Commit fd81d9c5 authored by Robert Shearman's avatar Robert Shearman Committed by Alexandre Julliard

oleaut32: Handle VT_INT in serialize_param and deserialize_param.

parent ec5d7391
......@@ -517,6 +517,7 @@ serialize_param(
return hres;
case VT_BOOL:
case VT_ERROR:
case VT_INT:
case VT_UINT:
case VT_I4:
case VT_R4:
......@@ -841,6 +842,7 @@ deserialize_param(
case VT_ERROR:
case VT_BOOL:
case VT_I4:
case VT_INT:
case VT_UINT:
case VT_R4:
case VT_UI4:
......
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