Changeset 5b0cf63 in mainline for uspace/lib/usbhid/include/usb/hid/hidpath.h
- Timestamp:
- 2018-01-25T13:42:08Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1ab3c4b
- Parents:
- c832ab15
- git-author:
- Jiri Svoboda <jiri@…> (2017-01-24 18:40:44)
- git-committer:
- Jiri Svoboda <jiri@…> (2018-01-25 13:42:08)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbhid/include/usb/hid/hidpath.h
rc832ab15 r5b0cf63 83 83 /** Usage page of report item. Zero when usage page can be changed. */ 84 84 uint32_t usage_page; 85 /** Usage of report item. Zero when usage can be changed. */ 85 /** Usage of report item. Zero when usage can be changed. */ 86 86 uint32_t usage; 87 87 … … 119 119 120 120 errno_t usb_hid_report_path_set_report_id(usb_hid_report_path_t *usage_path, 121 121 uint8_t report_id); 122 122 123 errno_t usb_hid_report_path_append_item(usb_hid_report_path_t *usage_path, 124 123 errno_t usb_hid_report_path_append_item(usb_hid_report_path_t *usage_path, 124 int32_t usage_page, int32_t usage); 125 125 126 126 void usb_hid_report_remove_last_item(usb_hid_report_path_t *usage_path); … … 128 128 void usb_hid_report_null_last_item(usb_hid_report_path_t *usage_path); 129 129 130 void usb_hid_report_set_last_item(usb_hid_report_path_t *usage_path, 131 130 void usb_hid_report_set_last_item(usb_hid_report_path_t *usage_path, 131 int32_t tag, int32_t data); 132 132 133 133 int usb_hid_report_compare_usage_path(usb_hid_report_path_t *report_path, 134 134 usb_hid_report_path_t *path, int flags); 135 135 136 136 usb_hid_report_path_t *usb_hid_report_path_clone( 137 137 usb_hid_report_path_t *usage_path); 138 138 139 139 void usb_hid_print_usage_path(usb_hid_report_path_t *path);
Note:
See TracChangeset
for help on using the changeset viewer.