mshtml: Added VT_UINT handling to debugstr_variant.

This commit is contained in:
Jacek Caban 2009-07-23 15:25:38 +02:00 committed by Alexandre Julliard
parent 8d8bef944d
commit 57f23b875c
1 changed files with 2 additions and 0 deletions

View File

@ -433,6 +433,8 @@ const char *debugstr_variant(const VARIANT *v)
return wine_dbg_sprintf("{VT_DISPATCH: %p}", V_DISPATCH(v));
case VT_BOOL:
return wine_dbg_sprintf("{VT_BOOL: %x}", V_BOOL(v));
case VT_UINT:
return wine_dbg_sprintf("{VT_UINT: %u}", V_UINT(v));
default:
return wine_dbg_sprintf("{vt %d}", V_VT(v));
}