Commit 1ec78b81 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

oleaut32: Update OaBuildVersion.

parent 87c0e868
...@@ -599,8 +599,11 @@ ULONG WINAPI OaBuildVersion(void) ...@@ -599,8 +599,11 @@ ULONG WINAPI OaBuildVersion(void)
case 0x80000a04: /* WIN98 */ case 0x80000a04: /* WIN98 */
case 0x00000004: /* NT40 */ case 0x00000004: /* NT40 */
case 0x00000005: /* W2K */ case 0x00000005: /* W2K */
case 0x00000105: /* WinXP */
return MAKELONG(0xffff, 40); return MAKELONG(0xffff, 40);
case 0x00000105: /* WinXP */
case 0x00000006: /* Vista */
case 0x00000106: /* Win7 */
return MAKELONG(0xffff, 50);
default: default:
FIXME("Version value not known yet. Please investigate it !\n"); 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, 40); /* for now return the same value as for w2k */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment