mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
- Handle IRP_MN_QUERY_INTERFACE
svn path=/trunk/; revision=38858
This commit is contained in:
parent
f781b11878
commit
1832435672
1 changed files with 9 additions and 0 deletions
|
@ -141,7 +141,16 @@ PortClsPnp(
|
|||
/* Do not complete? */
|
||||
Irp->IoStatus.Status = STATUS_SUCCESS;
|
||||
}
|
||||
else if ( irp_stack->MinorFunction == IRP_MN_QUERY_INTERFACE )
|
||||
{
|
||||
//FIXME
|
||||
// call next lower device object
|
||||
Irp->IoStatus.Status = STATUS_UNSUCCESSFUL;
|
||||
return Irp->IoStatus.Status;
|
||||
}
|
||||
|
||||
|
||||
DPRINT1("unhandled function %u\n", irp_stack->MinorFunction);
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue