Changes in uspace/lib/usbhid/include/usb/hid/hidparser.h [160b75e:5f9b81af] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbhid/include/usb/hid/hidparser.h
r160b75e r5f9b81af 51 51 size_t size, uint8_t *report_id); 52 52 53 /** */54 size_t usb_hid_report_input_length(const usb_hid_report_t *report,55 usb_hid_report_path_t *path, int flags);56 57 53 /* 58 54 * Output report parser functions … … 65 61 void usb_hid_report_output_free(uint8_t *output); 66 62 67 /** Returns size of output for given usage path */ 68 size_t usb_hid_report_output_size(usb_hid_report_t *report, 69 usb_hid_report_path_t *path, int flags); 63 /** Returns size of report in items */ 64 size_t usb_hid_report_size(usb_hid_report_t *report, uint8_t report_id, 65 usb_hid_report_type_t type); 66 67 size_t usb_hid_report_byte_size(usb_hid_report_t *report, uint8_t report_id, 68 usb_hid_report_type_t type); 69 70 70 71 71 /** Makes the output report buffer by translated given data */ 72 72 int usb_hid_report_output_translate(usb_hid_report_t *report, uint8_t report_id, 73 73 uint8_t *buffer, size_t size); 74 74 75 75 76 /** */ … … 81 82 82 83 /** */ 83 uint8_t usb_hid_ report_get_report_id(usb_hid_report_t *report,84 uint8_t usb_hid_get_next_report_id(usb_hid_report_t *report, 84 85 uint8_t report_id, 85 86 usb_hid_report_type_t type);
Note:
See TracChangeset
for help on using the changeset viewer.