Default to Win98 in DLL linkage heuristics.

This commit is contained in:
Mike Hearn 2004-06-21 23:55:07 +00:00 committed by Alexandre Julliard
parent 0d592611bd
commit b6908b4c9f

View file

@ -451,10 +451,10 @@ static DWORD VERSION_GetLinkedDllVersion(void)
if (ophd->Subsystem == IMAGE_SUBSYSTEM_WINDOWS_CUI)
return NT351; /* FIXME: NT 3.1, not tested */
else
return WIN95;
return WIN98;
}
return WIN95;
return WIN98;
}
/**********************************************************************