HID_XFER_PACKET - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-hidclass-_hid_xfer_packet)

_HID_XFER_PACKET structure (hidclass.h)

Description

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.

Members

reportBuffer

Pointer to a report buffer.

reportBufferLen

Specifies the length of the report at reportBuffer.

reportId

Specifies the report ID of the report contained at reportBuffer. This parameter is optional, and, if not specified, should be set to zero.

Remarks

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.

See also

IOCTL_HID_GET_FEATURE

IOCTL_HID_GET_INPUT_REPORT

IOCTL_HID_SET_FEATURE

IOCTL_HID_SET_OUTPUT_REPORT


Windows Driver Kit DDI reference (ns-vhf-_hid_xfer_packet)

_HID_XFER_PACKET structure (vhf.h)

Description

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.

Members

reportBuffer

Pointer to a report buffer.

reportBufferLen

Specifies the length of the report at reportBuffer.

reportId

Specifies the report ID of the report contained at reportBuffer. This parameter is optional, and, if not specified, should be set to zero.

Remarks

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.

See also

IOCTL_HID_GET_FEATURE

IOCTL_HID_GET_INPUT_REPORT

IOCTL_HID_SET_FEATURE

IOCTL_HID_SET_OUTPUT_REPORT