Commit 4bae34cd authored by EA Durbin's avatar EA Durbin Committed by Alexandre Julliard

ntoskrnl.exe: Add stub Implementation of IoAllocateMdl.

parent eb6a1fc9
......@@ -247,6 +247,15 @@ NTSTATUS wine_ntoskrnl_main_loop( HANDLE stop_event )
}
}
/***********************************************************************
* IoAllocateMdl (NTOSKRNL.EXE.@)
*/
PMDL WINAPI IoAllocateMdl( PVOID VirtualAddress, ULONG Length, BOOLEAN SecondaryBuffer, BOOLEAN ChargeQuota, PIRP Irp )
{
FIXME( "stub: %p, %u, %i, %i, %p \n", VirtualAddress, Length, SecondaryBuffer, ChargeQuota, Irp );
return NULL;
}
/***********************************************************************
* IoAllocateWorkItem (NTOSKRNL.EXE.@)
......
......@@ -312,7 +312,7 @@
@ stub IoAllocateDriverObjectExtension
@ stub IoAllocateErrorLogEntry
@ stub IoAllocateIrp
@ stub IoAllocateMdl
@ stdcall IoAllocateMdl(ptr long long long ptr)
@ stdcall IoAllocateWorkItem(ptr)
@ stub IoAssignResources
@ stub IoAttachDevice
......
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