Changeset 5a6cc679 in mainline for uspace/lib/usbhid/src/hiddescriptor.c
- Timestamp:
- 2018-01-31T02:21:24Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a0a9cc2
- Parents:
- 132ab5d1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbhid/src/hiddescriptor.c
r132ab5d1 r5a6cc679 134 134 * @retval EOK If report structure was successfully initialized 135 135 */ 136 int usb_hid_report_init(usb_hid_report_t *report)136 errno_t usb_hid_report_init(usb_hid_report_t *report) 137 137 { 138 138 if (report == NULL) { … … 162 162 * 163 163 */ 164 int usb_hid_report_append_fields(usb_hid_report_t *report,164 errno_t usb_hid_report_append_fields(usb_hid_report_t *report, 165 165 usb_hid_report_item_t *report_item) { 166 166 … … 342 342 * @retval EOK If report descriptor is successfully parsed 343 343 */ 344 int usb_hid_parse_report_descriptor(usb_hid_report_t *report,344 errno_t usb_hid_parse_report_descriptor(usb_hid_report_t *report, 345 345 const uint8_t *data, size_t size) 346 346 {
Note:
See TracChangeset
for help on using the changeset viewer.