usb.h | usb.h | |||
---|---|---|---|---|
skipping to change at line 158 | skipping to change at line 158 | |||
#define USB_RECIP_DEVICE 0x00 | #define USB_RECIP_DEVICE 0x00 | |||
#define USB_RECIP_INTERFACE 0x01 | #define USB_RECIP_INTERFACE 0x01 | |||
#define USB_RECIP_ENDPOINT 0x02 | #define USB_RECIP_ENDPOINT 0x02 | |||
#define USB_RECIP_OTHER 0x03 | #define USB_RECIP_OTHER 0x03 | |||
/* | /* | |||
* Various libusb API related stuff | * Various libusb API related stuff | |||
*/ | */ | |||
#define USB_OK 0 | /* Error codes */ | |||
#define USB_ERROR -1 | #define USB_ERROR_BEGIN 500000 | |||
/* Data types */ | /* Data types */ | |||
struct usb_device; | struct usb_device; | |||
struct usb_bus; | struct usb_bus; | |||
struct usb_device { | struct usb_device { | |||
struct usb_device *next, *prev; | struct usb_device *next, *prev; | |||
int devicenum; | int devicenum; | |||
skipping to change at line 203 | skipping to change at line 203 | |||
int usb_bulk_write(usb_dev_handle *dev, int ep, char *bytes, int size, | int usb_bulk_write(usb_dev_handle *dev, int ep, char *bytes, int size, | |||
int timeout); | int timeout); | |||
int usb_bulk_read(usb_dev_handle *dev, int ep, char *bytes, int size, | int usb_bulk_read(usb_dev_handle *dev, int ep, char *bytes, int size, | |||
int timeout); | int timeout); | |||
int usb_control_msg(usb_dev_handle *dev, int requesttype, int request, | int usb_control_msg(usb_dev_handle *dev, int requesttype, int request, | |||
int value, int index, char *bytes, int size, int timeout); | int value, int index, char *bytes, int size, int timeout); | |||
int usb_set_configuration(usb_dev_handle *dev, int configuration); | int usb_set_configuration(usb_dev_handle *dev, int configuration); | |||
int usb_claim_interface(usb_dev_handle *dev, int interface); | int usb_claim_interface(usb_dev_handle *dev, int interface); | |||
int usb_set_altinterface(usb_dev_handle *dev, int alternate); | int usb_set_altinterface(usb_dev_handle *dev, int alternate); | |||
char *usb_strerror(void); | ||||
void usb_init(void); | void usb_init(void); | |||
void usb_set_debug(int level); | ||||
int usb_find_busses(void); | ||||
int usb_find_devices(void); | ||||
struct usb_device *usb_device(usb_dev_handle *dev); | struct usb_device *usb_device(usb_dev_handle *dev); | |||
#endif __USB_H__ | #endif __USB_H__ | |||
End of changes. 3 change blocks. | ||||
2 lines changed or deleted | 7 lines changed or added | |||