Changes in uspace/lib/usbhid/include/usb/hid/hidpath.h [f3b39b4:b72efe8] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbhid/include/usb/hid/hidpath.h
rf3b39b4 rb72efe8 88 88 uint8_t flags; 89 89 90 /** Link ed list structure*/91 link_t link;90 /** Link to usb_hid_report_path_t.items list */ 91 link_t rpath_items_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 */109 106 110 /** Head of the list of usage path items. */111 link_t head;107 /** Link to usb_hid_report_path_t.collection_paths list. */ 108 link_t cpath_link; 112 109 110 /** List of usage path items. */ 111 list_t items; /* of usb_hid_report_usage_path_t */ 113 112 } usb_hid_report_path_t; 114 113
Note:
See TracChangeset
for help on using the changeset viewer.