Commit e1f45229 authored by Mohamad Al-Jaf's avatar Mohamad Al-Jaf Committed by Alexandre Julliard

kernelbase: Partially implement QueryUnbiasedInterruptTimePrecise.

parent 99fc289b
......@@ -1250,7 +1250,7 @@
@ stdcall QueryThreadCycleTime(long ptr)
@ stdcall QueryThreadpoolStackInformation(ptr ptr)
@ stdcall QueryUnbiasedInterruptTime(ptr) ntdll.RtlQueryUnbiasedInterruptTime
# @ stub QueryUnbiasedInterruptTimePrecise
@ stdcall QueryUnbiasedInterruptTimePrecise(ptr)
@ stdcall QueryVirtualMemoryInformation(long ptr long ptr long ptr)
@ stdcall QueryWorkingSet(long ptr long)
@ stdcall QueryWorkingSetEx(long ptr long)
......
......@@ -235,6 +235,18 @@ void WINAPI DECLSPEC_HOTPATCH QueryInterruptTimePrecise( ULONGLONG *time )
/***********************************************************************
* QueryUnbiasedInterruptTimePrecise (kernelbase.@)
*/
void WINAPI DECLSPEC_HOTPATCH QueryUnbiasedInterruptTimePrecise( ULONGLONG *time )
{
static int once;
if (!once++) FIXME( "(%p): semi-stub.\n", time );
RtlQueryUnbiasedInterruptTime( 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