mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:19:49 +00:00
jscript: Support also VT_UI4 in debugstr_variant.
This commit is contained in:
parent
3d7af6a334
commit
738120efa2
1 changed files with 2 additions and 0 deletions
|
@ -41,6 +41,8 @@ const char *debugstr_variant(const VARIANT *v)
|
|||
return "{VT_NULL}";
|
||||
case VT_I4:
|
||||
return wine_dbg_sprintf("{VT_I4: %d}", V_I4(v));
|
||||
case VT_UI4:
|
||||
return wine_dbg_sprintf("{VT_UI4: %u}", V_UI4(v));
|
||||
case VT_R8:
|
||||
return wine_dbg_sprintf("{VT_R8: %lf}", V_R8(v));
|
||||
case VT_BSTR:
|
||||
|
|
Loading…
Reference in a new issue