summaryrefslogtreecommitdiff
path: root/include/bt
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2012-12-17 18:20:05 +0100
committerPaolo Bonzini <pbonzini@redhat.com>2012-12-19 08:32:46 +0100
commit927d4878b0ff319ed87fed9363f314613b0a5ed9 (patch)
tree8be632ec8e42f4cff1aea13be62b2ac94ddaaa96 /include/bt
parent9c17d615a66ebd655871bf891ec0fe901ad8b332 (diff)
downloadqemu-927d4878b0ff319ed87fed9363f314613b0a5ed9.tar.gz
softmmu: move remaining include files to include/ subdirectories
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/bt')
-rw-r--r--include/bt/bt.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/include/bt/bt.h b/include/bt/bt.h
new file mode 100644
index 0000000000..2bc6d53cca
--- /dev/null
+++ b/include/bt/bt.h
@@ -0,0 +1,20 @@
+#ifndef BT_HOST_H
+#define BT_HOST_H
+
+/* BT HCI info */
+
+struct HCIInfo {
+ int (*bdaddr_set)(struct HCIInfo *hci, const uint8_t *bd_addr);
+ void (*cmd_send)(struct HCIInfo *hci, const uint8_t *data, int len);
+ void (*sco_send)(struct HCIInfo *hci, const uint8_t *data, int len);
+ void (*acl_send)(struct HCIInfo *hci, const uint8_t *data, int len);
+ void *opaque;
+ void (*evt_recv)(void *opaque, const uint8_t *data, int len);
+ void (*acl_recv)(void *opaque, const uint8_t *data, int len);
+};
+
+/* bt-host.c */
+struct HCIInfo *bt_host_hci(const char *id);
+struct HCIInfo *qemu_next_hci(void);
+
+#endif