Changeset 7dfc06fa in mainline for uspace/lib/drv/include/usbhc_iface.h
- Timestamp:
- 2011-04-08T18:08:46Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c6cb76d
- Parents:
- c1b1944
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/drv/include/usbhc_iface.h
rc1b1944 r7dfc06fa 66 66 * - argument #1 is target address 67 67 * - argument #2 is target endpoint 68 * - argument #3 is max packet size of the endpoint69 68 * - this call is immediately followed by IPC data read (async version) 70 69 * - the call is not answered until the device returns some data (or until … … 202 201 203 202 /** Out transfer processing function prototype. */ 204 typedef int (*usbhc_iface_transfer_out_t)(ddf_fun_t *, usb_target_t, size_t,203 typedef int (*usbhc_iface_transfer_out_t)(ddf_fun_t *, usb_target_t, 205 204 void *, size_t, 206 205 usbhc_iface_transfer_out_callback_t, void *); … … 210 209 211 210 /** In transfer processing function prototype. */ 212 typedef int (*usbhc_iface_transfer_in_t)(ddf_fun_t *, usb_target_t, size_t,211 typedef int (*usbhc_iface_transfer_in_t)(ddf_fun_t *, usb_target_t, 213 212 void *, size_t, 214 213 usbhc_iface_transfer_in_callback_t, void *); … … 234 233 235 234 int (*control_write)(ddf_fun_t *, usb_target_t, 236 size_t,237 235 void *, size_t, void *, size_t, 238 236 usbhc_iface_transfer_out_callback_t, void *); 239 237 240 238 int (*control_read)(ddf_fun_t *, usb_target_t, 241 size_t,242 239 void *, size_t, void *, size_t, 243 240 usbhc_iface_transfer_in_callback_t, void *);
Note:
See TracChangeset
for help on using the changeset viewer.