Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
fdc77282
Commit
fdc77282
authored
Oct 07, 2014
by
André Hentschel
Committed by
Alexandre Julliard
Oct 08, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedump: Update minidump output.
parent
710694d9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
+11
-2
minidump.c
tools/winedump/minidump.c
+11
-2
No files found.
tools/winedump/minidump.c
View file @
fdc77282
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment