Return OLE automation build value as win2k by default.

This commit is contained in:
Mike Hearn 2005-02-08 12:12:40 +00:00 committed by Alexandre Julliard
parent 65fb09183b
commit 08dc15fa0a

View file

@ -565,8 +565,8 @@ ULONG WINAPI OaBuildVersion()
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 */
}
}