diff options
Diffstat (limited to 'daemon/device.h')
-rw-r--r-- | daemon/device.h | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/daemon/device.h b/daemon/device.h deleted file mode 100644 index ea77069..0000000 --- a/daemon/device.h +++ /dev/null | |||
@@ -1,52 +0,0 @@ | |||
1 | /* | ||
2 | usbmuxd - iPhone/iPod Touch USB multiplex server daemon | ||
3 | |||
4 | Copyright (C) 2009 Hector Martin "marcan" <hector@marcansoft.com> | ||
5 | |||
6 | This program is free software; you can redistribute it and/or modify | ||
7 | it under the terms of the GNU General Public License as published by | ||
8 | the Free Software Foundation, either version 2 or version 3. | ||
9 | |||
10 | This program is distributed in the hope that it will be useful, | ||
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | GNU General Public License for more details. | ||
14 | |||
15 | You should have received a copy of the GNU General Public License | ||
16 | along with this program; if not, write to the Free Software | ||
17 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
18 | |||
19 | */ | ||
20 | |||
21 | #ifndef __DEVICE_H__ | ||
22 | #define __DEVICE_H__ | ||
23 | |||
24 | #include "usb.h" | ||
25 | #include "client.h" | ||
26 | |||
27 | struct device_info { | ||
28 | int id; | ||
29 | const char *serial; | ||
30 | uint32_t location; | ||
31 | uint16_t pid; | ||
32 | }; | ||
33 | |||
34 | void device_data_input(struct usb_device *dev, unsigned char *buf, uint32_t length); | ||
35 | |||
36 | int device_add(struct usb_device *dev); | ||
37 | void device_remove(struct usb_device *dev); | ||
38 | |||
39 | int device_start_connect(int device_id, uint16_t port, struct mux_client *client); | ||
40 | void device_client_process(int device_id, struct mux_client *client, short events); | ||
41 | void device_abort_connect(int device_id, struct mux_client *client); | ||
42 | |||
43 | int device_get_count(void); | ||
44 | int device_get_list(struct device_info *p); | ||
45 | |||
46 | int device_get_timeout(void); | ||
47 | void device_check_timeouts(void); | ||
48 | |||
49 | void device_init(void); | ||
50 | void device_kill_connections(void); | ||
51 | void device_shutdown(void); | ||
52 | #endif | ||