Commit b6908b4c authored by Mike Hearn's avatar Mike Hearn Committed by Alexandre Julliard

Default to Win98 in DLL linkage heuristics.

parent 0d592611
...@@ -451,10 +451,10 @@ static DWORD VERSION_GetLinkedDllVersion(void) ...@@ -451,10 +451,10 @@ static DWORD VERSION_GetLinkedDllVersion(void)
if (ophd->Subsystem == IMAGE_SUBSYSTEM_WINDOWS_CUI) if (ophd->Subsystem == IMAGE_SUBSYSTEM_WINDOWS_CUI)
return NT351; /* FIXME: NT 3.1, not tested */ return NT351; /* FIXME: NT 3.1, not tested */
else else
return WIN95; return WIN98;
} }
return WIN95; return WIN98;
} }
/********************************************************************** /**********************************************************************
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment