diff options
author | Hector Martin | 2009-04-30 05:52:10 +0200 |
---|---|---|
committer | Hector Martin | 2009-04-30 05:52:10 +0200 |
commit | 49a8ef4fcbc8e76ca0f484e6b2d2d9eea70596b6 (patch) | |
tree | d42281bbc3b17af0f92daa5d35429f46bdd2130f /device.h | |
parent | 53fb582e7729d5b7ed40ff04d912fcf5add7ce1c (diff) | |
download | usbmuxd-49a8ef4fcbc8e76ca0f484e6b2d2d9eea70596b6.tar.gz usbmuxd-49a8ef4fcbc8e76ca0f484e6b2d2d9eea70596b6.tar.bz2 |
too much stuff and it WORKS
Diffstat (limited to 'device.h')
-rw-r--r-- | device.h | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -22,12 +22,31 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #define __DEVICE_H__ #include "usb.h" +#include "client.h" + +struct device_info { + int id; + const char *serial; + uint32_t location; + uint16_t pid; +}; void device_data_input(struct usb_device *dev, unsigned char *buf, int length); int device_add(struct usb_device *dev); void device_remove(struct usb_device *dev); +int device_start_connect(int device_id, uint16_t port, struct mux_client *client); +void device_client_process(int device_id, struct mux_client *client, short events); +void device_abort_connect(int device_id, struct mux_client *client); + +int device_get_count(void); +int device_get_list(struct device_info *p); + +int device_get_timeout(void); +void device_check_timeouts(void); + void device_init(void); +void device_kill_connections(void); void device_shutdown(void); #endif |