Commit 8242dbe5 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

winedump: Support REG_DWORD values in regf files.

parent b17fed02
......@@ -239,6 +239,10 @@ static BOOL dump_value(unsigned int hive_off, unsigned int off)
printf("%s", !data ? "" :
get_unicode_str((const WCHAR *)data, data_size / sizeof(WCHAR)));
break;
case REG_DWORD:
assert(data_size == sizeof(DWORD));
printf("dword:%08x", *(unsigned int *)data);
break;
default:
printf("unhandled data type %d", val->data_type);
}
......
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