Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 75 of file undoc.cpp.
Referenced by CPortPinWavePci::HandleKsProperty().
{ PIO_STACK_LOCATION IoStack; // get current irp stack location IoStack = IoGetCurrentIrpStackLocation(Irp); if (IoStack->Parameters.DeviceIoControl.InputBufferLength < sizeof(KSPROPERTY)) { // certainly an invalid request return STATUS_INVALID_PARAMETER; } // store device descriptor KSPROPERTY_ITEM_IRP_STORAGE(Irp) = (PKSPROPERTY_ITEM)SubDeviceDescriptor; // then try KsPropertyHandler return KsPropertyHandler(Irp, PropertySetCount, PropertySet); }