Subversion Repositories freemyipod

Rev

Rev 28 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 28 Rev 232
Line 36... Line 36...
36
int usb_drv_send_nonblocking(int endpoint, const void *ptr, int length);
36
int usb_drv_send_nonblocking(int endpoint, const void *ptr, int length);
37
int usb_drv_recv(int endpoint, void* ptr, int length);
37
int usb_drv_recv(int endpoint, void* ptr, int length);
38
void usb_drv_cancel_all_transfers(void);
38
void usb_drv_cancel_all_transfers(void);
39
bool usb_drv_stalled(int endpoint, bool in);
39
bool usb_drv_stalled(int endpoint, bool in);
40
void usb_drv_stall(int endpoint, bool stall, bool in);
40
void usb_drv_stall(int endpoint, bool stall, bool in);
41
void usb_drv_init(void);
41
void usb_drv_init(void) INITCODE_ATTR;
42
int usb_drv_get_max_out_size();
42
int usb_drv_get_max_out_size();
43
int usb_drv_get_max_in_size();
43
int usb_drv_get_max_in_size();
44
 
44
 
45
 
45
 
46
#endif
46
#endif