msxml3: Add VT_I1 type to variant dump helper.
This commit is contained in:
parent
9a28ac8f7b
commit
ec8ec0fa9b
|
@ -267,6 +267,8 @@ const char *debugstr_variant(const VARIANT *v)
|
||||||
return "{VT_EMPTY}";
|
return "{VT_EMPTY}";
|
||||||
case VT_NULL:
|
case VT_NULL:
|
||||||
return "{VT_NULL}";
|
return "{VT_NULL}";
|
||||||
|
case VT_I1:
|
||||||
|
return wine_dbg_sprintf("{VT_I1: %d}", V_I1(v));
|
||||||
case VT_I2:
|
case VT_I2:
|
||||||
return wine_dbg_sprintf("{VT_I2: %d}", V_I2(v));
|
return wine_dbg_sprintf("{VT_I2: %d}", V_I2(v));
|
||||||
case VT_I4:
|
case VT_I4:
|
||||||
|
|
Loading…
Reference in New Issue