ntoskrnl.exe: Add ExAcquireResourceExclusiveLite stub.
Signed-off-by: Austin English <austinenglish@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
8254058cbb
commit
08384597fb
|
@ -2280,6 +2280,15 @@ NTSTATUS WINAPI IoCsqInitialize(PIO_CSQ csq, PIO_CSQ_INSERT_IRP insert_irp, PIO_
|
||||||
return STATUS_SUCCESS;
|
return STATUS_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* ExAcquireResourceExclusiveLite (NTOSKRNL.EXE.@)
|
||||||
|
*/
|
||||||
|
BOOLEAN WINAPI ExAcquireResourceExclusiveLite( PERESOURCE resource, BOOLEAN wait )
|
||||||
|
{
|
||||||
|
FIXME( ":%p %u stub\n", resource, wait );
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
/*****************************************************
|
/*****************************************************
|
||||||
* ExInterlockedRemoveHeadList (NTOSKRNL.EXE.@)
|
* ExInterlockedRemoveHeadList (NTOSKRNL.EXE.@)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -111,7 +111,7 @@
|
||||||
@ stub DbgPrompt
|
@ stub DbgPrompt
|
||||||
@ stub DbgQueryDebugFilterState
|
@ stub DbgQueryDebugFilterState
|
||||||
@ stub DbgSetDebugFilterState
|
@ stub DbgSetDebugFilterState
|
||||||
@ stub ExAcquireResourceExclusiveLite
|
@ stdcall ExAcquireResourceExclusiveLite(ptr long)
|
||||||
@ stub ExAcquireResourceSharedLite
|
@ stub ExAcquireResourceSharedLite
|
||||||
@ stub ExAcquireSharedStarveExclusive
|
@ stub ExAcquireSharedStarveExclusive
|
||||||
@ stub ExAcquireSharedWaitForExclusive
|
@ stub ExAcquireSharedWaitForExclusive
|
||||||
|
|
Loading…
Reference in New Issue