[PATCH 0/2] MR3195: oleaut32: OaBuildVersion - Fix return for available windows versions
From: Alistair Leslie-Hughes <leslie_alistair(a)hotmail.com> Wine-bug: https://bugs.winehq.org/show_bug.cgi?id=54257 --- dlls/oleaut32/oleaut.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dlls/oleaut32/oleaut.c b/dlls/oleaut32/oleaut.c index 92a9f12661b..ed3fe841416 100644 --- a/dlls/oleaut32/oleaut.c +++ b/dlls/oleaut32/oleaut.c @@ -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"); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/3195
From: Alistair Leslie-Hughes <leslie_alistair(a)hotmail.com> --- dlls/oleaut32/oleaut.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/oleaut32/oleaut.c b/dlls/oleaut32/oleaut.c index ed3fe841416..46bb9d6b2cf 100644 --- a/dlls/oleaut32/oleaut.c +++ b/dlls/oleaut32/oleaut.c @@ -666,7 +666,7 @@ ULONG WINAPI OaBuildVersion(void) return MAKELONG(0xffff, 50); default: FIXME("Version value not known yet. Please investigate it !\n"); - return MAKELONG(0xffff, 40); /* for now return the same value as for w2k */ + return MAKELONG(0xffff, 50); /* for now return the same value as for Win10 */ } } -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/3195
participants (2)
-
Alistair Leslie-Hughes -
Alistair Leslie-Hughes (@alesliehughes)