Changeset 4971812 in mainline for uspace/lib/usbvirt/private.h
- Timestamp:
- 2010-10-10T21:20:02Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0e41957
- Parents:
- 6c1315b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbvirt/private.h
r6c1315b r4971812 41 41 extern usbvirt_device_t *device; 42 42 43 #define DEVICE_HAS_OP(dev, op) \ 44 ( \ 45 ( ((dev)->ops) != NULL ) \ 46 && \ 47 ( ((dev)->ops->op) != NULL ) \ 48 ) 43 49 44 50 int usbvirt_data_to_host(struct usbvirt_device *dev, … … 49 55 int control_pipe(void *buffer, size_t size); 50 56 57 int handle_std_request(usb_direction_t direction, int recipient, 58 uint16_t request, uint16_t value, uint16_t index, uint16_t length, 59 uint8_t *remaining_data); 60 51 61 #endif 52 62 /**
Note:
See TracChangeset
for help on using the changeset viewer.