summaryrefslogtreecommitdiff
path: root/firmware/usbstack/usb_storage.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/usbstack/usb_storage.h')
-rw-r--r--firmware/usbstack/usb_storage.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/firmware/usbstack/usb_storage.h b/firmware/usbstack/usb_storage.h
index 34bc0144dd..40f8ed9248 100644
--- a/firmware/usbstack/usb_storage.h
+++ b/firmware/usbstack/usb_storage.h
@@ -27,6 +27,11 @@ void usb_storage_init_connection(int interface,int endpoint);
27void usb_storage_init(void); 27void usb_storage_init(void);
28void usb_storage_transfer_complete(bool in,int state,int length); 28void usb_storage_transfer_complete(bool in,int state,int length);
29bool usb_storage_control_request(struct usb_ctrlrequest* req); 29bool usb_storage_control_request(struct usb_ctrlrequest* req);
30#ifdef HAVE_HOTSWAP
31void usb_storage_notify_hotswap(int volume,bool inserted);
32#endif
33
34void usb_storage_reconnect(void);
30 35
31#endif 36#endif
32 37