mirror of
https://github.com/reactos/reactos.git
synced 2025-04-25 08:00:24 +00:00
[OLEAUT32] OaBuildVersion: Add Windows Server 2003 case (#5004)
Fixes debug print in Visual Studio 6 PRO installation. CORE-18419
This commit is contained in:
parent
21a168e574
commit
5b3b4151e2
1 changed files with 3 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue