ui: update keycodemapdb to get py3 fixes
[qemu/ar7.git] / include / sysemu / bt.h
blobddb05cd1090581ca5072cb9936b65bf8901b931e
1 #ifndef SYSEMU_BT_H
2 #define SYSEMU_BT_H
4 /* BT HCI info */
6 struct HCIInfo {
7 int (*bdaddr_set)(struct HCIInfo *hci, const uint8_t *bd_addr);
8 void (*cmd_send)(struct HCIInfo *hci, const uint8_t *data, int len);
9 void (*sco_send)(struct HCIInfo *hci, const uint8_t *data, int len);
10 void (*acl_send)(struct HCIInfo *hci, const uint8_t *data, int len);
11 void *opaque;
12 void (*evt_recv)(void *opaque, const uint8_t *data, int len);
13 void (*acl_recv)(void *opaque, const uint8_t *data, int len);
16 /* bt-host.c */
17 struct HCIInfo *bt_host_hci(const char *id);
18 struct HCIInfo *qemu_next_hci(void);
20 #endif