Fix build break for rpm
[framework/connectivity/bluez.git] / audio / device.h
1 /*
2  *
3  *  BlueZ - Bluetooth protocol stack for Linux
4  *
5  *  Copyright (C) 2006-2010  Nokia Corporation
6  *  Copyright (C) 2004-2010  Marcel Holtmann <marcel@holtmann.org>
7  *
8  *
9  *  This program is free software; you can redistribute it and/or modify
10  *  it under the terms of the GNU General Public License as published by
11  *  the Free Software Foundation; either version 2 of the License, or
12  *  (at your option) any later version.
13  *
14  *  This program is distributed in the hope that it will be useful,
15  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *  GNU General Public License for more details.
18  *
19  *  You should have received a copy of the GNU General Public License
20  *  along with this program; if not, write to the Free Software
21  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
22  *
23  */
24
25 struct source;
26 struct control;
27 struct target;
28 struct sink;
29 struct headset;
30 struct gateway;
31 struct dev_priv;
32
33 struct audio_device {
34         struct btd_device *btd_dev;
35
36         DBusConnection *conn;
37         char *path;
38         bdaddr_t src;
39         bdaddr_t dst;
40
41         gboolean auto_connect;
42
43         struct headset *headset;
44         struct gateway *gateway;
45         struct sink *sink;
46         struct source *source;
47         struct control *control;
48         struct target *target;
49
50         guint hs_preauth_id;
51
52         struct dev_priv *priv;
53 };
54
55 struct audio_device *audio_device_register(DBusConnection *conn,
56                                         struct btd_device *device,
57                                         const char *path, const bdaddr_t *src,
58                                         const bdaddr_t *dst);
59
60 void audio_device_unregister(struct audio_device *device);
61
62 gboolean audio_device_is_active(struct audio_device *dev,
63                                                 const char *interface);
64
65 typedef void (*authorization_cb) (DBusError *derr, void *user_data);
66
67 int audio_device_cancel_authorization(struct audio_device *dev,
68                                         authorization_cb cb, void *user_data);
69
70 int audio_device_request_authorization(struct audio_device *dev,
71                                         const char *uuid, authorization_cb cb,
72                                         void *user_data);
73
74 void audio_device_set_authorized(struct audio_device *dev, gboolean auth);