// kbdmou.h
// CTL_CODE(0x000f, 0x080, METHOD_NEITHER, FILE_ANY_ACCESS)
#define IOCTL_INTERNAL_MOUSE_CONNECT 0x000F0203
View the official Windows Driver Kit DDI referenceNo description available.
The IOCTL_INTERNAL_MOUSE_CONNECT request connects Mouclass service to a mouse device. Mouclass sends this request down the device stack before it opens a mouse device.
After Moufiltr receives the mouse connect request, it filters the request in the following way:
If the request is not successful, Moufiltr completes the request with an appropriate error status.
Moufiltr provides a template for a filter service callback routine that can supplement the operation of MouseClassServiceCallback, the Mouclass service callback routine. The filter service callback can filter the input data that is transferred from the device input buffer to the class driver data queue.
For more information about the connection of the Mouclass service, see the following topics:
IRP_MJ_INTERNAL_DEVICE_CONTROL
The Parameters.DeviceIoControl.Type3InputBuffer member points to a CONNECT_DATA structure that is allocated and set by Mouclass.
The Parameters.DeviceIoControl.InputBufferLength member is set to a value greater than or equal to the size, in bytes, of a CONNECT_DATA structure.
The Parameters.DeviceIoControl.Type3InputBuffer member points to a CONNECT_DATA structure that is set by Moufiltr.
The size of a CONNECT_DATA structure.
The Information member is set to zero.
The Status member is set to one of the following values:
STATUS_INVALID_PARAMETER
Parameters.DeviceIoControl.InputBufferLength is less than the size, in bytes, of a CONNECT_DATA structure.
STATUS_SHARING_VIOLATION
Moufiltr is already connected (a filter driver supports only one connect request).