Mercurial > audlegacy-plugins
annotate src/bluetooth/bluetooth.h @ 2832:eb4cacfc1d03
branch merge
author | Andrew O. Shadoura <bugzilla@tut.by> |
---|---|
date | Mon, 14 Jul 2008 01:21:11 +0300 |
parents | 229647ca4942 |
children | 22a2ffe86750 |
rev | line source |
---|---|
2644 | 1 #include <config.h> |
2 | |
3 #include <glib.h> | |
4 #include <sys/types.h> | |
5 #include <audacious/plugin.h> | |
6 #include <audacious/ui_plugin_menu.h> | |
7 #include <audacious/i18n.h> | |
8 #include <gtk/gtk.h> | |
9 #include <audacious/util.h> | |
10 #include "gui.h" | |
2646
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
11 typedef struct { |
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
12 guint class; |
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
13 gchar* address; |
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
14 gchar* name; |
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
15 }DeviceData; |
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
16 |
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
17 |
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
18 |
2644 | 19 void refresh_call(void); |
20 void connect_call(void); | |
2646
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
21 GList * audio_devices; |
2728 | 22 gint discover_finish ; |
2646
7fbff3287a56
added device discovery in the plugin's prefs window
Paula Stanciu <paula.stanciu@gmail.com>
parents:
2644
diff
changeset
|
23 |
2728 | 24 |