diff options
author | Claudio Takahasi <claudio.takahasi@openbossa.org> | 2008-03-06 21:58:13 +0000 |
---|---|---|
committer | Claudio Takahasi <claudio.takahasi@openbossa.org> | 2008-03-06 21:58:13 +0000 |
commit | 6eab5e203d793fbeea8a488a315a62ab2e69417e (patch) | |
tree | 3843d76b14275da37d94acbe49c05a6eb3c29cee /hcid/adapter.h | |
parent | 51a5483169faa3b64b50970891a545192836ee9b (diff) |
added bt_discover_services function
Diffstat (limited to 'hcid/adapter.h')
-rw-r--r-- | hcid/adapter.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/hcid/adapter.h b/hcid/adapter.h index 0331f29a..b6f30291 100644 --- a/hcid/adapter.h +++ b/hcid/adapter.h @@ -80,6 +80,11 @@ struct pending_dc_info { guint timeout_id; }; +struct create_device_req { + DBusConnection *conn; + DBusMessage *msg; +}; + struct adapter { uint16_t dev_id; int up; @@ -106,6 +111,7 @@ struct adapter { struct bonding_request_info *bonding; GSList *pin_reqs; struct pending_dc_info *pending_dc; + struct create_device_req *create; }; dbus_bool_t adapter_init(DBusConnection *conn, const char *path); |