http://bugs.winehq.org/show_bug.cgi?id=5302
------- Additional Comments From xerox_xerox2000@yahoo.co.uk 2006-29-05 10:00 ------- Hi, i'm just trying to track down the patch that broke this app. About your question:here's patch from marcus meissner: --- dlls/kernel/time.c 17 Oct 2005 09:23:22 -0000 1.55 +++ dlls/kernel/time.c 30 Oct 2005 16:59:15 -0000 @@ -516,6 +516,9 @@ * 2) Time is relative. There is no 'starting date', so there is * no need for offset correction, like in UnixTimeToFileTime */ +#ifndef CLK_TCK +# define CLK_TCK CLOCKS_PER_SEC +#endif static void TIME_ClockTimeToFileTime(clock_t unix_time, LPFILETIME filetime) { ULONGLONG secs = RtlEnlargedUnsignedMultiply( unix_time, 10000000 );
that should you get compiled older wine-versions as well.