Module: wine Branch: master Commit: 1b9bb7f974b70cf74c56c74009efb7f468c432f9 URL: https://source.winehq.org/git/wine.git/?a=commit;h=1b9bb7f974b70cf74c56c7400...
Author: Rémi Bernon rbernon@codeweavers.com Date: Fri Sep 3 07:57:34 2021 +0200
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
---
dlls/winexinput.sys/main.c | 4 ++++ 1 file changed, 4 insertions(+)
diff --git a/dlls/winexinput.sys/main.c b/dlls/winexinput.sys/main.c index 386b4bbb228..515d109a2ad 100644 --- a/dlls/winexinput.sys/main.c +++ b/dlls/winexinput.sys/main.c @@ -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;