msxml3: Add VT_INT to VARIANT tracing helper.

This commit is contained in:
Nikolay Sivov 2012-11-07 21:43:44 -05:00 committed by Alexandre Julliard
parent bb44713e6d
commit 9860e85ac8
1 changed files with 2 additions and 0 deletions

View File

@ -273,6 +273,8 @@ const char *debugstr_variant(const VARIANT *v)
return wine_dbg_sprintf("{VT_I2: %d}", V_I2(v));
case VT_I4:
return wine_dbg_sprintf("{VT_I4: %d}", V_I4(v));
case VT_INT:
return wine_dbg_sprintf("{VT_INT: %d}", V_INT(v));
case VT_R8:
return wine_dbg_sprintf("{VT_R8: %lf}", V_R8(v));
case VT_BSTR: