Commit 66c321a4 authored by Gijs Vermeulen's avatar Gijs Vermeulen Committed by Alexandre Julliard

ntoskrnl.exe: Add ExSetTimerResolution stub.

parent 199b5d2c
......@@ -4197,3 +4197,12 @@ NTSTATUS WINAPI ExUuidCreate(UUID *uuid)
return STATUS_SUCCESS;
}
/***********************************************************************
* ExSetTimerResolution (NTOSKRNL.EXE.@)
*/
ULONG WINAPI ExSetTimerResolution(ULONG time, BOOLEAN set_resolution)
{
FIXME("stub: %u %d\n", time, set_resolution);
return KeQueryTimeIncrement();
}
......@@ -181,7 +181,7 @@
@ stdcall ExReleaseResourceForThreadLite(ptr long)
@ extern ExSemaphoreObjectType
@ stub ExSetResourceOwnerPointer
@ stub ExSetTimerResolution
@ stdcall ExSetTimerResolution(long long)
@ stub ExSystemExceptionFilter
@ stdcall ExSystemTimeToLocalTime(ptr ptr) RtlSystemTimeToLocalTime
@ stub ExUnregisterCallback
......
......@@ -1473,6 +1473,7 @@ PSLIST_ENTRY WINAPI ExInterlockedPopEntrySList(PSLIST_HEADER,PKSPIN_LOCK);
PSLIST_ENTRY WINAPI ExInterlockedPushEntrySList(PSLIST_HEADER,PSLIST_ENTRY,PKSPIN_LOCK);
LIST_ENTRY * WINAPI ExInterlockedRemoveHeadList(LIST_ENTRY*,KSPIN_LOCK*);
void WINAPI ExReleaseFastMutexUnsafe(PFAST_MUTEX);
ULONG WINAPI ExSetTimerResolution(ULONG,BOOLEAN);
void WINAPI IoAcquireCancelSpinLock(KIRQL*);
NTSTATUS WINAPI IoAllocateDriverObjectExtension(PDRIVER_OBJECT,PVOID,ULONG,PVOID*);
......
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