mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
ntoskrnl.exe: Add IoReleaseRemoveLockAndWaitEx stub.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=43642 Signed-off-by: Austin English <austinenglish@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
3ff8fa7ed1
commit
235f6da846
2 changed files with 12 additions and 1 deletions
|
@ -3547,7 +3547,18 @@ BOOLEAN WINAPI SeSinglePrivilegeCheck(LUID privilege, KPROCESSOR_MODE mode)
|
|||
return TRUE;
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
* KeFlushQueuedDpcs (NTOSKRNL.@)
|
||||
*/
|
||||
void WINAPI KeFlushQueuedDpcs(void)
|
||||
{
|
||||
FIXME("stub!\n");
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
* IoReleaseRemoveLockAndWaitEx (NTOSKRNL.@)
|
||||
*/
|
||||
void WINAPI IoReleaseRemoveLockAndWaitEx(PIO_REMOVE_LOCK lock, PVOID tag, ULONG size)
|
||||
{
|
||||
FIXME("stub: %p %p %u\n", lock, tag, size);
|
||||
}
|
||||
|
|
|
@ -436,7 +436,7 @@
|
|||
@ stdcall IoRegisterPlugPlayNotification(long long ptr ptr ptr ptr ptr)
|
||||
@ stdcall IoRegisterShutdownNotification(ptr)
|
||||
@ stdcall IoReleaseCancelSpinLock(long)
|
||||
@ stub IoReleaseRemoveLockAndWaitEx
|
||||
@ stdcall IoReleaseRemoveLockAndWaitEx(ptr ptr long)
|
||||
@ stub IoReleaseRemoveLockEx
|
||||
@ stub IoReleaseVpbSpinLock
|
||||
@ stub IoRemoveShareAccess
|
||||
|
|
Loading…
Reference in a new issue