ab09f11fa4a496d7952b0b31a521eb778f2e1f74
[project/usbmode.git] / switch.h
1 #ifndef __USBMODE_SWITCH_H
2 #define __USBMODE_SWITCH_H
3
4 #include <libubox/blobmsg.h>
5 #include <libusb.h>
6
7 struct usbdev_data {
8         struct libusb_device_descriptor desc;
9         struct libusb_config_descriptor *config;
10         libusb_device_handle *devh;
11         struct blob_attr *info;
12         int interface;
13         int msg_endpoint;
14         int response_endpoint;
15
16         char idstr[10];
17         char mfg[128], prod[128], serial[128];
18 };
19
20 extern struct blob_attr **messages;
21 extern int n_messages;
22
23 void handle_switch(struct usbdev_data *data);
24
25 #endif