blob: 66be0ee390fdc65b4188bbf74de1d000bf536757 (
plain)
1
2
3
4
5
6
7
8
|
#ifndef _AUSB_USB_H
#define _AUSB_USB_H
int __usb_bulk_write(usb_dev_handle *dev, int ep, char *bytes, int length,
int timeout);
int __usb_bulk_read(usb_dev_handle *dev, int ep, char *bytes, int length,
int timeout);
int __usb_reattach_kernel_driver_np(usb_dev_handle *dev, int interface);
#endif
|