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
d736ef4b
Commit
d736ef4b
authored
Jul 18, 1999
by
Ian Schmidt
Committed by
Alexandre Julliard
Jul 18, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added version information for Win98.
parent
cbd5ed74
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
0 deletions
+14
-0
winversion.h
include/winversion.h
+1
-0
version.c
misc/version.c
+13
-0
No files found.
include/winversion.h
View file @
d736ef4b
...
...
@@ -7,6 +7,7 @@ typedef enum
{
WIN31
,
/* Windows 3.1 */
WIN95
,
/* Windows 95 */
WIN98
,
/* Windows 98 */
NT351
,
/* Windows NT 3.51 */
NT40
,
/* Windows NT 4.0 */
NB_WINDOWS_VERSIONS
...
...
misc/version.c
View file @
d736ef4b
...
...
@@ -49,6 +49,15 @@ static VERSION_DATA VersionData[NB_WINDOWS_VERSIONS] =
VER_PLATFORM_WIN32_WINDOWS
,
"Win95"
}
},
/* WIN98 */
{
0x07005F03
,
/* FIXME: need DOS value from real Win98 */
0xC0000A04
,
{
sizeof
(
OSVERSIONINFOA
),
4
,
10
,
0x40A07CE
,
VER_PLATFORM_WIN32_WINDOWS
,
"Win98"
}
},
/* NT351 */
{
0x05000A03
,
...
...
@@ -73,6 +82,7 @@ static const char *WinVersionNames[NB_WINDOWS_VERSIONS] =
{
"win31"
,
"win95"
,
"win98"
,
"nt351"
,
"nt40"
};
...
...
@@ -280,6 +290,8 @@ char *VERSION_GetVersionName()
return
"Windows 3.1"
;
case
WIN95
:
return
"Windows 95"
;
case
WIN98
:
return
"Windows 98"
;
case
NT351
:
return
"Windows NT 3.51"
;
case
NT40
:
...
...
@@ -483,6 +495,7 @@ UINT WINAPI OaBuildVersion()
case
0x80000a03
:
/* Win 3.1 */
return
0x140fd1
;
/* from Win32s 1.1e */
case
0xc0000004
:
/* Win 95 */
case
0xc0000a04
:
/* Win 98: verified same as Win95 */
return
0x1e10a9
;
/* some older version: 0x0a0bd3 */
case
0x04213303
:
/* NT 3.51 */
FIXME
(
"NT 3.51 version value unknown !
\n
"
);
...
...
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