Commit 84465b42 authored by Christian Costa's avatar Christian Costa Committed by Alexandre Julliard

ntoskrnl.exe: Add stub for IoAcquireCancelSpinLock and IoReleaseCancelSpinLock.

parent 57019615
...@@ -284,6 +284,24 @@ NTSTATUS CDECL wine_ntoskrnl_main_loop( HANDLE stop_event ) ...@@ -284,6 +284,24 @@ NTSTATUS CDECL wine_ntoskrnl_main_loop( HANDLE stop_event )
/*********************************************************************** /***********************************************************************
* IoAcquireCancelSpinLock (NTOSKRNL.EXE.@)
*/
void WINAPI IoAcquireCancelSpinLock(PKIRQL irql)
{
FIXME("(%p): stub\n", irql);
}
/***********************************************************************
* IoReleaseCancelSpinLock (NTOSKRNL.EXE.@)
*/
void WINAPI IoReleaseCancelSpinLock(PKIRQL irql)
{
FIXME("(%p): stub\n", irql);
}
/***********************************************************************
* IoAllocateDriverObjectExtension (NTOSKRNL.EXE.@) * IoAllocateDriverObjectExtension (NTOSKRNL.EXE.@)
*/ */
NTSTATUS WINAPI IoAllocateDriverObjectExtension( PDRIVER_OBJECT DriverObject, NTSTATUS WINAPI IoAllocateDriverObjectExtension( PDRIVER_OBJECT DriverObject,
......
...@@ -303,7 +303,7 @@ ...@@ -303,7 +303,7 @@
@ stub InbvSetTextColor @ stub InbvSetTextColor
@ stub InbvSolidColorFill @ stub InbvSolidColorFill
@ stub InitSafeBootMode @ stub InitSafeBootMode
@ stub IoAcquireCancelSpinLock @ stdcall IoAcquireCancelSpinLock(ptr)
@ stub IoAcquireRemoveLockEx @ stub IoAcquireRemoveLockEx
@ stub IoAcquireVpbSpinLock @ stub IoAcquireVpbSpinLock
@ stub IoAdapterObjectType @ stub IoAdapterObjectType
...@@ -432,7 +432,7 @@ ...@@ -432,7 +432,7 @@
@ stub IoRegisterLastChanceShutdownNotification @ stub IoRegisterLastChanceShutdownNotification
@ stub IoRegisterPlugPlayNotification @ stub IoRegisterPlugPlayNotification
@ stdcall IoRegisterShutdownNotification(ptr) @ stdcall IoRegisterShutdownNotification(ptr)
@ stub IoReleaseCancelSpinLock @ stdcall IoReleaseCancelSpinLock(ptr)
@ stub IoReleaseRemoveLockAndWaitEx @ stub IoReleaseRemoveLockAndWaitEx
@ stub IoReleaseRemoveLockEx @ stub IoReleaseRemoveLockEx
@ stub IoReleaseVpbSpinLock @ stub IoReleaseVpbSpinLock
......
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