Commit 99fc289b authored by Brendan Shanks's avatar Brendan Shanks Committed by Alexandre Julliard

kernelbase: Partially implement QueryInterruptTimePrecise.

parent 474e8e0d
......@@ -1235,7 +1235,7 @@
# @ stub QueryIdleProcessorCycleTime
# @ stub QueryIdleProcessorCycleTimeEx
@ stdcall QueryInterruptTime(ptr)
# @ stub QueryInterruptTimePrecise
@ stdcall QueryInterruptTimePrecise(ptr)
@ stdcall QueryMemoryResourceNotification(ptr ptr)
# @ stub QueryOptionalDelayLoadedAPI
@ stdcall QueryPerformanceCounter(ptr) ntdll.RtlQueryPerformanceCounter
......
......@@ -222,6 +222,18 @@ void WINAPI DECLSPEC_HOTPATCH QueryInterruptTime( ULONGLONG *time )
}
/******************************************************************************
* QueryInterruptTimePrecise (kernelbase.@)
*/
void WINAPI DECLSPEC_HOTPATCH QueryInterruptTimePrecise( ULONGLONG *time )
{
static int once;
if (!once++) FIXME( "(%p) semi-stub\n", time );
QueryInterruptTime( time );
}
/***********************************************************************
* Waits
***********************************************************************/
......
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