Commit 814d8d74 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

winedump: Support REG_NONE values in regf files.

parent c6c844f1
...@@ -235,6 +235,10 @@ static BOOL dump_value(unsigned int hive_off, unsigned int off) ...@@ -235,6 +235,10 @@ static BOOL dump_value(unsigned int hive_off, unsigned int off)
switch (val->data_type) switch (val->data_type)
{ {
case REG_NONE:
/* TODO: dump as REG_NONE value. */
printf("hex:");
break;
case REG_EXPAND_SZ: case REG_EXPAND_SZ:
printf("str(2):"); printf("str(2):");
/* fall through */ /* fall through */
......
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