Commit ec8ec0fa authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

msxml3: Add VT_I1 type to variant dump helper.

parent 9a28ac8f
...@@ -267,6 +267,8 @@ const char *debugstr_variant(const VARIANT *v) ...@@ -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:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment