msxml3: Support VT_I2 variants tracing.

This commit is contained in:
Nikolay Sivov 2012-06-23 17:08:27 +04:00 committed by Alexandre Julliard
parent 3ec82583d0
commit fd5e384979
1 changed files with 2 additions and 0 deletions

View File

@ -268,6 +268,8 @@ const char *debugstr_variant(const VARIANT *v)
return "{VT_EMPTY}";
case VT_NULL:
return "{VT_NULL}";
case VT_I2:
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_R8: