1 #ifndef NM_USB_PLUG_H_
2 #define NM_USB_PLUG_H_
3 
4 #include <nm_string.h>
5 
6 void nm_usb_plug(const nm_str_t *name, int status);
7 void nm_usb_unplug(const nm_str_t *name, int status);
8 int nm_usb_check_plugged(const nm_str_t *name);
9 void nm_usb_unplug_list(const nm_vect_t *db_list, nm_vect_t *names, bool num);
10 
11 #endif /* NM_USB_PLUG_H_ */
12 /* vim:set ts=4 sw=4: */
13