winedbg: Use macros when manipulating variants.

Signed-off-by: Eric Pouech <eric.pouech@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Eric Pouech 2021-11-26 17:30:34 +01:00 committed by Alexandre Julliard
parent 07502a0646
commit 5b54dac338
2 changed files with 4 additions and 4 deletions

View File

@ -466,10 +466,10 @@ static void print_typed_basic(const struct dbg_lvalue* lvalue)
sub_type.id = fcp->ChildId[i]; sub_type.id = fcp->ChildId[i];
if (!types_get_info(&sub_type, TI_GET_VALUE, &variant)) if (!types_get_info(&sub_type, TI_GET_VALUE, &variant))
continue; continue;
switch (variant.n1.n2.vt) switch (V_VT(&variant))
{ {
case VT_I4: ok = (val_int == variant.n1.n2.n3.lVal); break; case VT_I4: ok = (val_int == V_I4(&variant)); break;
default: WINE_FIXME("Unsupported variant type (%u)\n", variant.n1.n2.vt); default: WINE_FIXME("Unsupported variant type (%u)\n", V_VT(&variant));
} }
if (ok) if (ok)
{ {

View File

@ -105,7 +105,7 @@ static BOOL fill_sym_lvalue(const SYMBOL_INFO* sym, ULONG_PTR base,
if (buffer) snprintf(buffer, sz, "Couldn't get full value information for %s", sym->Name); if (buffer) snprintf(buffer, sz, "Couldn't get full value information for %s", sym->Name);
return FALSE; return FALSE;
} }
else if (v.n1.n2.vt & VT_BYREF) else if (V_ISBYREF(&v))
{ {
/* FIXME: this won't work for pointers or arrays, as we don't always /* FIXME: this won't work for pointers or arrays, as we don't always
* know, if the value to be dereferenced lies in debuggee or * know, if the value to be dereferenced lies in debuggee or