Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
9f9b55d2
Commit
9f9b55d2
authored
Apr 12, 2007
by
András Kovács
Committed by
Alexandre Julliard
Apr 13, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Add Vista version option.
parent
321c21c5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
version.c
dlls/ntdll/version.c
+9
-1
No files found.
dlls/ntdll/version.c
View file @
9f9b55d2
...
...
@@ -50,6 +50,7 @@ typedef enum
NT2K
,
/* Windows 2000 */
WINXP
,
/* Windows XP */
WIN2K3
,
/* Windows 2003 */
WINVISTA
,
/* Windows Vista */
NB_WINDOWS_VERSIONS
}
WINDOWS_VERSION
;
...
...
@@ -135,6 +136,12 @@ static const RTL_OSVERSIONINFOEXW VersionData[NB_WINDOWS_VERSIONS] =
sizeof
(
RTL_OSVERSIONINFOEXW
),
5
,
2
,
0xECE
,
VER_PLATFORM_WIN32_NT
,
{
'S'
,
'e'
,
'r'
,
'v'
,
'i'
,
'c'
,
'e'
,
' '
,
'P'
,
'a'
,
'c'
,
'k'
,
' '
,
'1'
,
0
},
1
,
0
,
VER_SUITE_SINGLEUSERTS
,
VER_NT_SERVER
,
0
},
/* WINVISTA */
{
sizeof
(
RTL_OSVERSIONINFOEXW
),
6
,
0
,
0x1770
,
VER_PLATFORM_WIN32_NT
,
{
' '
,
0
},
0
,
0
,
VER_SUITE_SINGLEUSERTS
,
VER_NT_WORKSTATION
,
0
}
};
...
...
@@ -150,7 +157,8 @@ static const char * const WinVersionNames[NB_WINDOWS_VERSIONS] =
"nt40"
,
/* NT40 */
"win2000,win2k,nt2k,nt2000"
,
/* NT2K */
"winxp"
,
/* WINXP */
"win2003,win2k3"
/* WIN2K3 */
"win2003,win2k3"
,
/* WIN2K3 */
"vista,winvista"
/* WINVISTA*/
};
...
...
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