Skip to content
Snippets Groups Projects
Commit 2cc30a6f authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard
Browse files

Try to autodetect NT4.

parent ba8e2a3f
No related branches found
No related tags found
No related merge requests found
......@@ -118,9 +118,12 @@ WINDOWS_VERSION VERSION_GetVersion(void)
return WIN31; /* FIXME: hmm, look at DDB.version ? */
}
peheader = PE_HEADER(PROCESS_Current()->exe_modref->module);
if (peheader->OptionalHeader.MajorSubsystemVersion == 4)
/* FIXME: NT4 has the same majorversion; add a check here for it. */
if (peheader->OptionalHeader.MajorSubsystemVersion == 4) {
/* FIXME: check probably not 100% good, verify with win98 too */
if (peheader->OptionalHeader.MajorOperatingSystemVersion == 4)
return NT40;
return WIN95;
}
if (peheader->OptionalHeader.MajorSubsystemVersion == 3)
{
/* Win3.10 */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment