ntoskrnl: Add ExReleaseResourceLite stub.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=45800 Signed-off-by: Gijs Vermeulen <gijsvrm@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
90aea35b9e
commit
2e807d4bf5
|
@ -3986,3 +3986,8 @@ NTSTATUS WINAPI DbgQueryDebugFilterState(ULONG component, ULONG level)
|
|||
FIXME("stub: %d %d\n", component, level);
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
void WINAPI ExReleaseResourceLite(PERESOURCE resource)
|
||||
{
|
||||
FIXME("stub: %p\n", resource);
|
||||
}
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
@ stdcall -norelay ExInterlockedPushEntrySList (ptr ptr ptr) NTOSKRNL_ExInterlockedPushEntrySList
|
||||
@ stub ExReInitializeRundownProtection
|
||||
@ stdcall -norelay ExReleaseFastMutexUnsafe(ptr)
|
||||
@ stub ExReleaseResourceLite
|
||||
@ stdcall ExReleaseResourceLite(ptr)
|
||||
@ stub ExReleaseRundownProtection
|
||||
@ stub ExReleaseRundownProtectionEx
|
||||
@ stub ExRundownCompleted
|
||||
|
|
Loading…
Reference in New Issue