QEMU main repository: Please see https://www.qemu.org/docs/master/devel/submitting-a-patch.html for how to submit changes to QEMU. Pull Requests are ignored. Please only use release tarballs from the QEMU website. http://www.qemu.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
381 B
17 lines
381 B
#ifndef HW_USB_HID_H
|
|
#define HW_USB_HID_H
|
|
|
|
/* HID interface requests */
|
|
#define HID_GET_REPORT 0xa101
|
|
#define HID_GET_IDLE 0xa102
|
|
#define HID_GET_PROTOCOL 0xa103
|
|
#define HID_SET_REPORT 0x2109
|
|
#define HID_SET_IDLE 0x210a
|
|
#define HID_SET_PROTOCOL 0x210b
|
|
|
|
/* HID descriptor types */
|
|
#define USB_DT_HID 0x21
|
|
#define USB_DT_REPORT 0x22
|
|
#define USB_DT_PHY 0x23
|
|
|
|
#endif
|
|
|