Return OLE automation build value as win2k by default.
diff --git a/dlls/oleaut32/oleaut.c b/dlls/oleaut32/oleaut.c
index 901c603..f8438a5 100644
--- a/dlls/oleaut32/oleaut.c
+++ b/dlls/oleaut32/oleaut.c
@@ -565,8 +565,8 @@
case 0x00000005: /* W2K */
return MAKELONG(0xffff, 40);
default:
- ERR("Version value not known yet. Please investigate it !\n");
- return 0x0;
+ FIXME("Version value not known yet. Please investigate it !\n");
+ return MAKELONG(0xffff, 40); /* for now return the same value as for w2k */
}
}