ntoskrnl.exe: Add IoAttachDevice stub.
Signed-off-by: Austin English <austinenglish@gmail.com> Signed-off-by: Sebastian Lackner <sebastian@fds-team.de> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
bebaec60b6
commit
0e5fdf0e00
|
@ -2502,3 +2502,12 @@ NTSTATUS WINAPI KeDelayExecutionThread(KPROCESSOR_MODE waitmode, BOOLEAN alertab
|
|||
FIXME("(%u, %u, %p): stub\n", waitmode, alertable, interval);
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* IoAttachDevice (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
NTSTATUS WINAPI IoAttachDevice(DEVICE_OBJECT *source, UNICODE_STRING *target, DEVICE_OBJECT *attached)
|
||||
{
|
||||
FIXME("(%p, %s, %p): stub\n", source, debugstr_us(target), attached);
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
|
|
@ -315,7 +315,7 @@
|
|||
@ stdcall IoAllocateMdl(ptr long long long ptr)
|
||||
@ stdcall IoAllocateWorkItem(ptr)
|
||||
@ stub IoAssignResources
|
||||
@ stub IoAttachDevice
|
||||
@ stdcall IoAttachDevice(ptr ptr ptr)
|
||||
@ stub IoAttachDeviceByPointer
|
||||
@ stdcall IoAttachDeviceToDeviceStack(ptr ptr)
|
||||
@ stub IoAttachDeviceToDeviceStackSafe
|
||||
|
|
Loading…
Reference in New Issue