http://bugs.winehq.org/show_bug.cgi?id=19813
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- Keywords| |download URL| |http://www.voddler.com/en/h | |elp/download/ CC| |focht@gmx.net
--- Comment #9 from Anastasius Focht focht@gmx.net 2013-09-29 15:31:48 CDT --- Hello folks,
the stub is obviously still present.
Source: http://source.winehq.org/git/wine.git/blob/debd62cf9fbd63c04599c77696c8fa603...
--- snip --- 1065 /********************************************************************* 1066 * GetSystemTimes (KERNEL32.@) 1067 * 1068 * Retrieves system timing information 1069 * 1070 * PARAMS 1071 * lpIdleTime [O] Destination for idle time. 1072 * lpKernelTime [O] Destination for kernel time. 1073 * lpUserTime [O] Destination for user time. 1074 * 1075 * RETURNS 1076 * TRUE if success, FALSE otherwise. 1077 */ 1078 BOOL WINAPI GetSystemTimes(LPFILETIME lpIdleTime, LPFILETIME lpKernelTime, LPFILETIME lpUserTime) 1079 { 1080 FIXME("(%p,%p,%p): Stub!\n", lpIdleTime, lpKernelTime, lpUserTime); 1081 1082 return FALSE; 1083 } --- snip ---
There is another attempt to implement it here: http://source.winehq.org/patches/data/99225
Hint: GetSystemTimes() should be implemented on top of NtQuerySystemInformation( SystemProcessorPerformanceInformation ...), it's not very hard ...
$ wine --version wine-1.7.3
Regards