Commit 902d619d authored by Austin English's avatar Austin English Committed by Alexandre Julliard

ntoskrnl.exe: Add a stub for IoStartNextPacket.

parent b9c1e5ad
......@@ -1760,3 +1760,11 @@ PKEVENT WINAPI IoCreateSynchronizationEvent(PUNICODE_STRING name, PHANDLE handle
FIXME("(%p %p) stub\n", name, handle);
return NULL;
}
/*****************************************************
* IoStartNextPacket (NTOSKRNL.EXE.@)
*/
VOID WINAPI IoStartNextPacket(PDEVICE_OBJECT deviceobject, BOOLEAN cancelable)
{
FIXME("(%p %d) stub\n", deviceobject, cancelable);
}
......@@ -458,7 +458,7 @@
@ stub IoSetSystemPartition
@ stdcall IoSetThreadHardErrorMode(long)
@ stub IoSetTopLevelIrp
@ stub IoStartNextPacket
@ stdcall IoStartNextPacket(ptr long)
@ stub IoStartNextPacketByKey
@ stub IoStartPacket
@ stdcall IoStartTimer(ptr)
......
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