summaryrefslogtreecommitdiffstats
path: root/plugins/lib/bluetooth/hal-bt-data.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/lib/bluetooth/hal-bt-data.h')
-rw-r--r--plugins/lib/bluetooth/hal-bt-data.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/lib/bluetooth/hal-bt-data.h b/plugins/lib/bluetooth/hal-bt-data.h
index 030c8d1..ea3fe99 100644
--- a/plugins/lib/bluetooth/hal-bt-data.h
+++ b/plugins/lib/bluetooth/hal-bt-data.h
@@ -27,16 +27,18 @@
// Structure to store bluetooth device data
struct HalBtDeviceData {
char *uid;
+
+ char *hci;
char *name;
char *address;
- // TODO JAI : Get bluetooth device's profile and store it here
+
+ unsigned int a2dp;
struct HalBtDeviceData *next;
};
// Structure to store hal bluetooth plugin data
struct HalBtPluginData {
- // TODO JAI : Get hci device and store it here
unsigned int btStreamEnabled;
struct HalBtDeviceData *selectedBtDevice;