Changeset 32e093e in mainline for uspace/lib/usbhost/include/usb/host/endpoint.h
- Timestamp:
- 2011-08-25T10:17:06Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b02308e
- Parents:
- 1a02517
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbhost/include/usb/host/endpoint.h
r1a02517 r32e093e 56 56 struct { 57 57 void *data; 58 void (*data_dtor)(void*); 58 59 int (*toggle_get)(void *); 59 60 void (*toggle_set)(void *, int); … … 68 69 69 70 void endpoint_set_hc_data(endpoint_t *instance, 70 void *data, int (*toggle_get)(void *), void (*toggle_set)(void *, int)); 71 void *data, void (*data_dtor)(void *), 72 int (*toggle_get)(void *), void (*toggle_set)(void *, int)); 71 73 72 74 void endpoint_clear_hc_data(endpoint_t *instance);
Note:
See TracChangeset
for help on using the changeset viewer.