https://git.reactos.org/?p=reactos.git;a=commitdiff;h=5b3b4151e2c4a49fb19b5e...
commit 5b3b4151e2c4a49fb19b5e16b327f79c5bde9d12 Author: Ratin Gao ratin@knsoft.org AuthorDate: Mon Jan 23 02:34:54 2023 +0800 Commit: GitHub noreply@github.com CommitDate: Sun Jan 22 21:34:54 2023 +0300
[OLEAUT32] OaBuildVersion: Add Windows Server 2003 case (#5004)
Fixes debug print in Visual Studio 6 PRO installation. CORE-18419 --- dll/win32/oleaut32/oleaut.c | 3 +++ 1 file changed, 3 insertions(+)
diff --git a/dll/win32/oleaut32/oleaut.c b/dll/win32/oleaut32/oleaut.c index 87606bbf344..c38bb09a893 100644 --- a/dll/win32/oleaut32/oleaut.c +++ b/dll/win32/oleaut32/oleaut.c @@ -660,6 +660,9 @@ ULONG WINAPI OaBuildVersion(void) case 0x00000005: /* W2K */ return MAKELONG(0xffff, 40); case 0x00000105: /* WinXP */ +#ifdef __REACTOS__ + case 0x00000205: /* Win2K3 */ +#endif /* __REACTOS__ */ case 0x00000006: /* Vista */ case 0x00000106: /* Win7 */ return MAKELONG(0xffff, 50);