winexinput.sys: Handle IRP_MN_QUERY_DEVICE_RELATIONS in pdo_pnp.
Signed-off-by: Rémi Bernon <rbernon@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
75adc44191
commit
1b9bb7f974
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue