Mercurial > audlegacy-plugins
diff src/bluetooth/bluetooth.h @ 2646:7fbff3287a56
added device discovery in the plugin's prefs window
| author | Paula Stanciu <paula.stanciu@gmail.com> |
|---|---|
| date | Sun, 25 May 2008 21:29:07 +0300 |
| parents | 6fd8ca4b7b17 |
| children | 229647ca4942 |
line wrap: on
line diff
--- a/src/bluetooth/bluetooth.h Wed May 21 16:04:24 2008 +0300 +++ b/src/bluetooth/bluetooth.h Sun May 25 21:29:07 2008 +0300 @@ -8,5 +8,15 @@ #include <gtk/gtk.h> #include <audacious/util.h> #include "gui.h" +typedef struct { + guint class; + gchar* address; + gchar* name; +}DeviceData; + + + void refresh_call(void); void connect_call(void); +GList * audio_devices; +
