1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-08 20:06:18 +00:00

oleaut32: Fix OaBuildVersion return for available windows versions.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=54257
This commit is contained in:
Alistair Leslie-Hughes 2023-06-29 18:17:38 +10:00 committed by Alexandre Julliard
parent 0d21363903
commit a6415ba85e

View File

@ -661,6 +661,8 @@ ULONG WINAPI OaBuildVersion(void)
case 0x00000105: /* WinXP */
case 0x00000006: /* Vista */
case 0x00000106: /* Win7 */
case 0x00000205: /* W2K3 */
case 0x00000206: /* Win8, Win10, Win11 */
return MAKELONG(0xffff, 50);
default:
FIXME("Version value not known yet. Please investigate it !\n");