Changes in uspace/drv/usbhid/usbhid.h [e60436b:dd3eda2] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/usbhid/usbhid.h
re60436b rdd3eda2 44 44 #include <usb/devdrv.h> 45 45 #include <usb/classes/hid.h> 46 #include <bool.h> 46 47 47 48 struct usb_hid_dev; … … 93 94 usb_hid_report_t *report; 94 95 96 uint8_t *input_report; 97 98 size_t input_report_size; 99 95 100 /** Arbitrary data (e.g. a special structure for handling keyboard). */ 96 101 void *data; … … 120 125 void *arg); 121 126 122 const char *usb_hid_get_function_name(const usb_hid_dev_t *hid_dev);127 //const char *usb_hid_get_function_name(const usb_hid_dev_t *hid_dev); 123 128 124 const char *usb_hid_get_class_name(const usb_hid_dev_t *hid_dev); 129 //const char *usb_hid_get_class_name(const usb_hid_dev_t *hid_dev); 130 131 void usb_hid_new_report(void); 132 133 void usb_hid_report_received(void); 134 135 bool usb_hid_report_ready(void); 125 136 126 137 void usb_hid_free(usb_hid_dev_t **hid_dev);
Note:
See TracChangeset
for help on using the changeset viewer.