mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 16:23:55 -06:00
softmmu: move remaining include files to include/ subdirectories
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
9c17d615a6
commit
927d4878b0
61 changed files with 61 additions and 61 deletions
20
include/bt/bt.h
Normal file
20
include/bt/bt.h
Normal file
|
@ -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
|
Loading…
Add table
Add a link
Reference in a new issue