Commit 1b9bb7f9 authored by Rémi Bernon's avatar Rémi Bernon Committed by Alexandre Julliard

winexinput.sys: Handle IRP_MN_QUERY_DEVICE_RELATIONS in pdo_pnp.

parent 75adc441
......@@ -223,6 +223,10 @@ static NTSTATUS WINAPI pdo_pnp(DEVICE_OBJECT *device, IRP *irp)
status = STATUS_SUCCESS;
break;
case IRP_MN_QUERY_DEVICE_RELATIONS:
status = irp->IoStatus.Status;
break;
default:
FIXME("code %#x, not implemented!\n", code);
status = irp->IoStatus.Status;
......
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