Changes in uspace/lib/drv/include/usbhc_iface.h [7dfc06fa:b7d8fd9] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/drv/include/usbhc_iface.h
r7dfc06fa rb7d8fd9 66 66 * - argument #1 is target address 67 67 * - argument #2 is target endpoint 68 * - argument #3 is max packet size of the endpoint 68 69 * - this call is immediately followed by IPC data read (async version) 69 70 * - the call is not answered until the device returns some data (or until … … 201 202 202 203 /** Out transfer processing function prototype. */ 203 typedef int (*usbhc_iface_transfer_out_t)(ddf_fun_t *, usb_target_t, 204 typedef int (*usbhc_iface_transfer_out_t)(ddf_fun_t *, usb_target_t, size_t, 204 205 void *, size_t, 205 206 usbhc_iface_transfer_out_callback_t, void *); … … 209 210 210 211 /** In transfer processing function prototype. */ 211 typedef int (*usbhc_iface_transfer_in_t)(ddf_fun_t *, usb_target_t, 212 typedef int (*usbhc_iface_transfer_in_t)(ddf_fun_t *, usb_target_t, size_t, 212 213 void *, size_t, 213 214 usbhc_iface_transfer_in_callback_t, void *); … … 233 234 234 235 int (*control_write)(ddf_fun_t *, usb_target_t, 236 size_t, 235 237 void *, size_t, void *, size_t, 236 238 usbhc_iface_transfer_out_callback_t, void *); 237 239 238 240 int (*control_read)(ddf_fun_t *, usb_target_t, 241 size_t, 239 242 void *, size_t, void *, size_t, 240 243 usbhc_iface_transfer_in_callback_t, void *);
Note:
See TracChangeset
for help on using the changeset viewer.