ntoskrnl.exe: Add partial stub for IoFreeMdl.
This commit is contained in:
parent
2a278ef5e4
commit
5087cb192c
|
@ -408,6 +408,17 @@ PMDL WINAPI IoAllocateMdl( PVOID VirtualAddress, ULONG Length, BOOLEAN Secondary
|
|||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* IoFreeMdl (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
VOID WINAPI IoFreeMdl(PMDL mdl)
|
||||
{
|
||||
FIXME("partial stub: %p\n", mdl);
|
||||
|
||||
HeapFree(GetProcessHeap(), 0, mdl);
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* IoAllocateWorkItem (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
|
|
|
@ -371,7 +371,7 @@
|
|||
@ stub IoFreeController
|
||||
@ stub IoFreeErrorLogEntry
|
||||
@ stdcall IoFreeIrp(ptr)
|
||||
@ stub IoFreeMdl
|
||||
@ stdcall IoFreeMdl(ptr)
|
||||
@ stub IoFreeWorkItem
|
||||
@ stub IoGetAttachedDevice
|
||||
@ stub IoGetAttachedDeviceReference
|
||||
|
|
Loading…
Reference in New Issue