Changes in uspace/lib/usbhid/include/usb/hid/hidpath.h [9d58539:b7fd2a0] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbhid/include/usb/hid/hidpath.h
r9d58539 rb7fd2a0 36 36 #define LIBUSB_HIDPATH_H_ 37 37 38 #include <errno.h> 38 39 #include <usb/hid/hidparser.h> 39 40 #include <stdint.h> … … 41 42 42 43 43 /*---------------------------------------------------------------------------*/ 44 44 45 /* 45 46 * Flags of usage paths comparison modes. … … 73 74 #define USB_HID_PATH_COMPARE_ANYWHERE 8 74 75 75 /*----------------------------------------------------------------------------*/ 76 76 77 /** 77 78 * Item of usage path structure. Last item of linked list describes one item … … 93 94 94 95 95 /*---------------------------------------------------------------------------*/ 96 96 97 /** 97 98 * USB HID usage path structure. … … 112 113 } usb_hid_report_path_t; 113 114 114 /*---------------------------------------------------------------------------*/ 115 115 116 usb_hid_report_path_t *usb_hid_report_path(void); 116 117 117 118 void usb_hid_report_path_free(usb_hid_report_path_t *path); 118 119 119 int usb_hid_report_path_set_report_id(usb_hid_report_path_t *usage_path,120 errno_t usb_hid_report_path_set_report_id(usb_hid_report_path_t *usage_path, 120 121 uint8_t report_id); 121 122 122 int usb_hid_report_path_append_item(usb_hid_report_path_t *usage_path,123 errno_t usb_hid_report_path_append_item(usb_hid_report_path_t *usage_path, 123 124 int32_t usage_page, int32_t usage); 124 125
Note:
See TracChangeset
for help on using the changeset viewer.