Robert Shearman : oleaut: Support VT_CY in the typelib marshaller.
Module: wine Branch: refs/heads/master Commit: 878af6661eda616a0826b9bb5559d002941494ec URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=878af6661eda616a0826b9bb... Author: Robert Shearman <rob(a)codeweavers.com> Date: Sat Jan 14 17:47:25 2006 +0100 oleaut: Support VT_CY in the typelib marshaller. --- dlls/oleaut32/tmarshal.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/dlls/oleaut32/tmarshal.c b/dlls/oleaut32/tmarshal.c index 50a9135..273a598 100644 --- a/dlls/oleaut32/tmarshal.c +++ b/dlls/oleaut32/tmarshal.c @@ -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");
participants (1)
-
Alexandre Julliard