[OLEAUT32] OaBuildVersion: Add Windows Server 2003 case (#5004)
authorRatin Gao <ratin@knsoft.org>
Sun, 22 Jan 2023 18:34:54 +0000 (02:34 +0800)
committerGitHub <noreply@github.com>
Sun, 22 Jan 2023 18:34:54 +0000 (21:34 +0300)
Fixes debug print in Visual Studio 6 PRO installation. CORE-18419

dll/win32/oleaut32/oleaut.c

index 87606bb..c38bb09 100644 (file)
@@ -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);