1
2
3
4
5
6
7 #ifndef __USBIP_H
8 #define __USBIP_H
9
10 #ifdef HAVE_CONFIG_H
11 #include "../config.h"
12 #endif
13
14
15 int usbip_attach(int argc, char *argv[]);
16 int usbip_detach(int argc, char *argv[]);
17 int usbip_list(int argc, char *argv[]);
18 int usbip_bind(int argc, char *argv[]);
19 int usbip_unbind(int argc, char *argv[]);
20 int usbip_port_show(int argc, char *argv[]);
21
22 void usbip_attach_usage(void);
23 void usbip_detach_usage(void);
24 void usbip_list_usage(void);
25 void usbip_bind_usage(void);
26 void usbip_unbind_usage(void);
27
28 #endif