Changeset b7fd2a0 in mainline for uspace/lib/usbhid/src/hiddescriptor.c
- Timestamp:
- 2018-01-13T03:10:29Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a53ed3a
- Parents:
- 36f0738
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbhid/src/hiddescriptor.c
r36f0738 rb7fd2a0 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 … … 356 356 * @retval EOK If report descriptor is successfully parsed 357 357 */ 358 int usb_hid_parse_report_descriptor(usb_hid_report_t *report,358 errno_t usb_hid_parse_report_descriptor(usb_hid_report_t *report, 359 359 const uint8_t *data, size_t size) 360 360 {
Note:
See TracChangeset
for help on using the changeset viewer.