Mercurial > audlegacy
changeset 3392:d538aabf6df5
merge
author | Cristi Magherusan <majeru@atheme-project.org> |
---|---|
date | Tue, 14 Aug 2007 01:51:52 +0300 |
parents | 0afbafec6cd8 (diff) 7a4fcf84a34f (current diff) |
children | 3fa4ee796bd1 |
files | src/audacious/Makefile |
diffstat | 3 files changed, 11 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/audacious/Makefile Mon Aug 13 23:24:50 2007 +0300 +++ b/src/audacious/Makefile Tue Aug 14 01:51:52 2007 +0300 @@ -38,6 +38,7 @@ configdb.h \ custom_uri.h \ dbus.h \ + discovery.h \ dbus-service.h \ eventqueue.h \ formatter.h \
--- a/src/audacious/discovery.h Mon Aug 13 23:24:50 2007 +0300 +++ b/src/audacious/discovery.h Tue Aug 14 01:51:52 2007 +0300 @@ -32,6 +32,15 @@ GList *enabled_list; }; +GList * discovery_devices; +typedef struct _discovery_device_t discovery_device_t; +struct _discovery_device_t { + gchar *device_name; /*some kind of description*/ + gchar *device_address; /*some kind of device ID*/ + GList *device_playlist; /*contains all the songs on the device*/ +}; + + GList *get_discovery_list(void); GList *get_discovery_enabled_list(void); void enable_discovery_plugin(gint i, gboolean enable);