Changes in uspace/lib/usbhid/include/usb/hid/hidpath.h [b72efe8:f3b39b4] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbhid/include/usb/hid/hidpath.h
rb72efe8 rf3b39b4 88 88 uint8_t flags; 89 89 90 /** Link to usb_hid_report_path_t.items list*/91 link_t rpath_items_link;90 /** Linked list structure*/ 91 link_t link; 92 92 } usb_hid_report_usage_path_t; 93 93 … … 98 98 * */ 99 99 typedef struct { 100 /** Length of usage path */ 101 int depth; 100 /** Length of usage path */ 101 int depth; 102 102 103 103 /** Report id. Zero is reserved and means that report id is not used. 104 104 * */ 105 105 uint8_t report_id; 106 107 /** Linked list structure. */ 108 link_t link; /* list */ 106 109 107 /** Link to usb_hid_report_path_t.collection_paths list. */108 link_t cpath_link;110 /** Head of the list of usage path items. */ 111 link_t head; 109 112 110 /** List of usage path items. */111 list_t items; /* of usb_hid_report_usage_path_t */112 113 } usb_hid_report_path_t; 113 114
Note:
See TracChangeset
for help on using the changeset viewer.