// hidclass.h
typedef struct _HID_XFER_PACKET {
PUCHAR reportBuffer;
ULONG reportBufferLen;
UCHAR reportId;
} HID_XFER_PACKET, *PHID_XFER_PACKET;
View the official Windows Driver Kit DDI reference// vhf.h
typedef struct _HID_XFER_PACKET {
PUCHAR reportBuffer;
ULONG reportBufferLen;
UCHAR reportId;
} HID_XFER_PACKET, *PHID_XFER_PACKET;
View the official Windows Driver Kit DDI referenceNo description available.
The HID_XFER_PACKET structure contains information about a HID report that the HID class driver uses with I/O requests to get or set a report.
reportBufferPointer to a report buffer.
reportBufferLenSpecifies the length of the report at reportBuffer.
reportIdSpecifies the report ID of the report contained at reportBuffer. This parameter is optional, and, if not specified, should be set to zero.
The HID class driver uses this structure to specify information about a HID report when it uses an I/O request to get or set a report.
The HID_XFER_PACKET structure contains information about a HID report that the HID class driver uses with I/O requests to get or set a report.
reportBufferPointer to a report buffer.
reportBufferLenSpecifies the length of the report at reportBuffer.
reportIdSpecifies the report ID of the report contained at reportBuffer. This parameter is optional, and, if not specified, should be set to zero.
The HID class driver uses this structure to specify information about a HID report when it uses an I/O request to get or set a report.