Changes in uspace/drv/hid/usbhid/usbhid.h [5a6cc679:b7fd2a0] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/hid/usbhid/usbhid.h
r5a6cc679 rb7fd2a0 43 43 #include <usb/dev/pipes.h> 44 44 #include <usb/dev/driver.h> 45 #include <usb/dev/poll.h>46 45 #include <usb/hid/hid.h> 47 46 #include <stdbool.h> … … 107 106 usb_endpoint_mapping_t *poll_pipe_mapping; 108 107 109 /** Device polling structure. */110 usb_polling_t polling;111 112 108 /** Subdrivers. */ 113 109 usb_hid_subdriver_t *subdrivers; … … 142 138 void usb_hid_deinit(usb_hid_dev_t *hid_dev); 143 139 140 bool usb_hid_polling_callback(usb_device_t *dev, 141 uint8_t *buffer, size_t buffer_size, void *arg); 142 143 void usb_hid_polling_ended_callback(usb_device_t *dev, bool reason, void *arg); 144 144 145 void usb_hid_new_report(usb_hid_dev_t *hid_dev); 145 146
Note:
See TracChangeset
for help on using the changeset viewer.