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
a29d8223
Commit
a29d8223
authored
Dec 17, 2004
by
Vincent Béron
Committed by
Alexandre Julliard
Dec 17, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Better detect a dll's Windows version.
parent
71e322b2
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
version.c
dlls/ntdll/version.c
+11
-1
No files found.
dlls/ntdll/version.c
View file @
a29d8223
...
...
@@ -471,9 +471,19 @@ static DWORD VERSION_GetLinkedDllVersion(void)
{
case
90
:
return
WINME
;
case
10
:
return
WIN98
;
case
0
:
return
WIN95
;
/* FIXME: We should check for NT40 here */
case
0
:
switch
(
ophd
->
MajorImageVersion
)
{
case
4
:
return
NT40
;
case
0
:
return
WIN95
;
}
break
;
}
break
;
case
1
:
if
(
ophd
->
MinorOperatingSystemVersion
==
0
)
return
WIN95
;
break
;
}
FIXME
(
"Unknown EXE OS version %d.%d, please report !!
\n
"
,
ophd
->
MajorOperatingSystemVersion
,
ophd
->
MinorOperatingSystemVersion
);
...
...
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