msxml3: Add VT_I1 type to variant dump helper.

oldstable
Nikolay Sivov 2012-07-08 22:54:20 +04:00 committed by Alexandre Julliard
parent 9a28ac8f7b
commit ec8ec0fa9b
1 changed files with 2 additions and 0 deletions

View File

@ -267,6 +267,8 @@ const char *debugstr_variant(const VARIANT *v)
return "{VT_EMPTY}";
case VT_NULL:
return "{VT_NULL}";
case VT_I1:
return wine_dbg_sprintf("{VT_I1: %d}", V_I1(v));
case VT_I2:
return wine_dbg_sprintf("{VT_I2: %d}", V_I2(v));
case VT_I4: