oleaut32: Add support for VT_INT and VT_UINT constants.

This commit is contained in:
Huw Davies 2008-09-15 13:45:10 +01:00 committed by Alexandre Julliard
parent 4c7380b113
commit fbcd6422ef
1 changed files with 2 additions and 0 deletions

View File

@ -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;