-\r
- /* Type Defines: */\r
- /** Type define for the mouse HID report structure, for creating and sending HID reports to the host PC.\r
- * This mirrors the layout described to the host in the HID report descriptor, in Descriptors.c.\r
- */\r
- typedef struct\r
- {\r
- uint8_t Button; /**< Bit mask of the currently pressed mouse buttons */\r
- int8_t X; /**< Current mouse delta X movement, as a signed 8-bit integer */\r
- int8_t Y; /**< Current mouse delta Y movement, as a signed 8-bit integer */\r
- } USB_MouseReport_Data_t;\r