~ubuntu-branches/ubuntu/wily/bluez/wily

« back to all changes in this revision

Viewing changes to audio/manager.h

  • Committer: Bazaar Package Importer
  • Author(s): Mario Limonciello
  • Date: 2008-10-07 12:10:29 UTC
  • Revision ID: james.westby@ubuntu.com-20081007121029-4gup4fmmh2vfo5nh
Tags: upstream-4.12
ImportĀ upstreamĀ versionĀ 4.12

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *
 
3
 *  BlueZ - Bluetooth protocol stack for Linux
 
4
 *
 
5
 *  Copyright (C) 2006-2007  Nokia Corporation
 
6
 *  Copyright (C) 2004-2008  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 enabled_interfaces {
 
26
        gboolean headset;
 
27
        gboolean gateway;
 
28
        gboolean sink;
 
29
        gboolean source;
 
30
        gboolean control;
 
31
};
 
32
 
 
33
typedef void (*create_dev_cb_t) (struct audio_device *dev, void *user_data);
 
34
 
 
35
int audio_manager_init(DBusConnection *conn, GKeyFile *config);
 
36
void audio_manager_exit(void);
 
37
 
 
38
gboolean server_is_enabled(bdaddr_t *src, uint16_t svc);
 
39
 
 
40
struct audio_device *manager_find_device(const bdaddr_t *bda, const char *interface,
 
41
                                        gboolean connected);
 
42
 
 
43
gboolean manager_create_device(bdaddr_t *bda, create_dev_cb_t cb,
 
44
                                void *user_data);