winedump: Update minidump output.

This commit is contained in:
André Hentschel 2014-10-07 21:54:38 +02:00 committed by Alexandre Julliard
parent 710694d9ca
commit fdc7728219
1 changed files with 11 additions and 2 deletions

View File

@ -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;