summaryrefslogtreecommitdiffstats
path: root/audio/device.h
diff options
context:
space:
mode:
authorLuiz Augusto von Dentz <luiz.dentz@openbossa.org>2009-01-08 17:18:07 -0300
committerJohan Hedberg <johan.hedberg@nokia.com>2009-01-08 23:44:16 +0200
commit60ec17b68922904833973af118ff91e0f1df1b04 (patch)
tree286af09976dccb93d470d690d5f34f455f696e04 /audio/device.h
parent193ad2bbf689556c5cf96ff8f6368965223467bd (diff)
Make audio plugin to use audio_device sufix instead of device_.
To prevent future name clashes with btd_device API.
Diffstat (limited to 'audio/device.h')
-rw-r--r--audio/device.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/audio/device.h b/audio/device.h
index a50214da..2f626a54 100644
--- a/audio/device.h
+++ b/audio/device.h
@@ -65,10 +65,11 @@ struct audio_device {
struct target *target;
};
-struct audio_device *device_register(DBusConnection *conn,
+struct audio_device *audio_device_register(DBusConnection *conn,
const char *path, const bdaddr_t *src,
const bdaddr_t *dst);
-void device_unregister(struct audio_device *device);
+void audio_device_unregister(struct audio_device *device);
-gboolean device_is_connected(struct audio_device *dev, const char *interface);
+gboolean audio_device_is_connected(struct audio_device *dev,
+ const char *interface);