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