Changeset bbfa425 in mainline for uspace/drv/usbhid/usbhid.h
- Timestamp:
- 2011-06-01T16:12:03Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 662da50
- Parents:
- 083adbc (diff), 49ba19d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/usbhid/usbhid.h
r083adbc rbbfa425 50 50 typedef int (*usb_hid_driver_init_t)(struct usb_hid_dev *, void **data); 51 51 typedef void (*usb_hid_driver_deinit_t)(struct usb_hid_dev *, void *data); 52 typedef bool (*usb_hid_driver_poll_t)(struct usb_hid_dev *, void *data, uint8_t *, 53 size_t); 52 typedef bool (*usb_hid_driver_poll_t)(struct usb_hid_dev *, void *data); 54 53 typedef int (*usb_hid_driver_poll_ended_t)(struct usb_hid_dev *, void *data, 55 54 bool reason); … … 93 92 /** HID Report parser. */ 94 93 usb_hid_report_t *report; 94 95 uint8_t report_id; 95 96 96 97 uint8_t *input_report;
Note:
See TracChangeset
for help on using the changeset viewer.