summaryrefslogtreecommitdiffstats
path: root/device.h
diff options
context:
space:
mode:
Diffstat (limited to 'device.h')
-rw-r--r--device.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/device.h b/device.h
index 11beaea..878688c 100644
--- a/device.h
+++ b/device.h
@@ -23,7 +23,11 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 23
24#include "usb.h" 24#include "usb.h"
25 25
26void device_add(struct usb_device *dev); 26void device_data_input(struct usb_device *dev, unsigned char *buf, int length);
27
28int device_add(struct usb_device *dev);
27void device_remove(struct usb_device *dev); 29void device_remove(struct usb_device *dev);
28 30
31void device_init(void);
32void device_shutdown(void);
29#endif 33#endif