Commit fdc77282 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

winedump: Update minidump output.

parent 710694d9
......@@ -342,10 +342,19 @@ void mdmp_dump(void)
break;
case 1:
if (msi->u.s.ProductType == 1) str = "Win7";
else if (msi->u.s.ProductType == 3) str = "Server 2008";
else if (msi->u.s.ProductType == 3) str = "Server 2008 R2";
else str = "6-????";
break;
case 2:
if (msi->u.s.ProductType == 1) str = "Win8";
else if (msi->u.s.ProductType == 3) str = "Server 2012";
else str = "6-????";
break;
case 3:
if (msi->u.s.ProductType == 1) str = "Win8.1";
else if (msi->u.s.ProductType == 3) str = "Server 2012 R2";
else str = "6-????";
break;
case 2: str = "Win8"; break;
default: str = "6-????"; break;
}
break;
......
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