Module: wine Branch: master Commit: fbcd6422ef7d6c300b6662c9a8e97f980f0ca9fc URL: http://source.winehq.org/git/wine.git/?a=commit;h=fbcd6422ef7d6c300b6662c9a8...
Author: Huw Davies huw@codeweavers.com Date: Mon Sep 15 13:45:10 2008 +0100
oleaut32: Add support for VT_INT and VT_UINT constants.
---
dlls/oleaut32/typelib.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/dlls/oleaut32/typelib.c b/dlls/oleaut32/typelib.c index fb57292..b2e9d30 100644 --- a/dlls/oleaut32/typelib.c +++ b/dlls/oleaut32/typelib.c @@ -3172,6 +3172,8 @@ static void SLTG_DoVars(char *pBlk, char *pFirstItem, ITypeInfoImpl *pTI, unsign case VT_UI2: case VT_I4: case VT_UI4: + case VT_INT: + case VT_UINT: V_UNION((*ppVarDesc)->vardesc.u.lpvarValue, intVal) = *(INT*)(pBlk + pItem->byte_offs); break;