Skip to content
Snippets Groups Projects
Commit 08d3b4b9 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard
Browse files

msxml3: Support dumping VT_VARIANT|VT_BYREF variants.

parent 6c4bdf3b
Branches
Tags
No related merge requests found
......@@ -287,6 +287,8 @@ const char *debugstr_variant(const VARIANT *v)
V_BSTRREF(v), debugstr_w(V_BSTRREF(v) ? *V_BSTRREF(v) : NULL));
case VT_ERROR:
return wine_dbg_sprintf("{VT_ERROR: 0x%08x}", V_ERROR(v));
case VT_VARIANT|VT_BYREF:
return wine_dbg_sprintf("{VT_VARIANT|VT_BYREF: %s}", debugstr_variant(V_VARIANTREF(v)));
default:
return wine_dbg_sprintf("{vt %d}", V_VT(v));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment