KsDefaultDeviceIoCompletion function (ks.h)
The KsDefaultDeviceIoCompletion function is used to return a default response and to complete any device I/O control. It can be used in the KSDISPATCH_TABLE and as the default response to unknown Ioctl's. It is important to use this function so that queries such as property requests return the correct value rather than just STATUS_INVALID_DEVICE_REQUEST when properties are not support for instance.
Syntax
KSDDKAPI NTSTATUS KsDefaultDeviceIoCompletion(
[in] PDEVICE_OBJECT DeviceObject,
[in] PIRP Irp
);
Parameters
[in] DeviceObject
Specifies the device object dispatched to.
[in] Irp
Specifies the IRP to return a default response to.
Return value
The KsDefaultDeviceIoCompletion function returns the default response to the possible IOCTLs.
Remarks
Note that this routine will complete the IRP.
Requirements
Requirement | Value |
---|---|
Target Platform | Universal |
Header | ks.h (include Ks.h) |
Library | Ks.lib |