[OLEAUT32] OaBuildVersion: Add Windows Server 2003 case (#5004)

Fixes debug print in Visual Studio 6 PRO installation. CORE-18419
This commit is contained in:
Ratin Gao 2023-01-23 02:34:54 +08:00 committed by GitHub
parent 21a168e574
commit 5b3b4151e2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View 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);