summaryrefslogtreecommitdiffstats
path: root/hcid/device.h
diff options
context:
space:
mode:
authorAlok Barsode <alok.barsode@azingo.com>2008-07-21 14:53:56 +0530
committerLuiz Augusto von Dentz <luiz.dentz@indt.org.br>2008-07-28 10:47:14 -0300
commit4b0ab7e43f4fa555641902b07f2f7ab3821f2b75 (patch)
treebc6b8114dea3c3ee9613b398d0c056ada2e31ae3 /hcid/device.h
parent6d825531c184a498150203090b37f2ccb6819571 (diff)
Adding sdp_record list as parameter to probe.
Signed-off-by: Alok Barsode <alok.barsode@azingo.com>
Diffstat (limited to 'hcid/device.h')
-rw-r--r--hcid/device.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/hcid/device.h b/hcid/device.h
index 0e6944b3..bbb0846f 100644
--- a/hcid/device.h
+++ b/hcid/device.h
@@ -30,7 +30,7 @@ void device_remove(DBusConnection *conn, struct btd_device *device);
gint device_address_cmp(struct btd_device *device, const gchar *address);
int device_browse(struct btd_device *device, DBusConnection *conn,
DBusMessage *msg, uuid_t *search);
-void device_probe_drivers(struct btd_device *device, GSList *uuids);
+void device_probe_drivers(struct btd_device *device, GSList *uuids, sdp_list_t *recs);
struct adapter *device_get_adapter(struct btd_device *device);
const gchar *device_get_address(struct btd_device *device);
const gchar *device_get_path(struct btd_device *device);
@@ -48,7 +48,7 @@ uint8_t device_get_auth(struct btd_device *device);
struct btd_device_driver {
const char *name;
const char **uuids;
- int (*probe) (struct btd_device *device);
+ int (*probe) (struct btd_device *device, GSList *records);
void (*remove) (struct btd_device *device);
};