]> code.delx.au - pulseaudio/blob - src/modules/bluetooth/module-bluez5-discover.c
5dbe3996878a01b8acf9fdbaafca77b4ed5a9c9f
[pulseaudio] / src / modules / bluetooth / module-bluez5-discover.c
1 /***
2 This file is part of PulseAudio.
3
4 Copyright 2008-2013 João Paulo Rechi Vita
5
6 PulseAudio is free software; you can redistribute it and/or modify
7 it under the terms of the GNU Lesser General Public License as
8 published by the Free Software Foundation; either version 2.1 of the
9 License, or (at your option) any later version.
10
11 PulseAudio is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public
17 License along with PulseAudio; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19 USA.
20 ***/
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <pulsecore/macro.h>
27 #include <pulsecore/module.h>
28
29 #include "module-bluez5-discover-symdef.h"
30
31 PA_MODULE_AUTHOR("João Paulo Rechi Vita");
32 PA_MODULE_DESCRIPTION("Detect available BlueZ 5 Bluetooth audio devices and load BlueZ 5 Bluetooth audio drivers");
33 PA_MODULE_VERSION(PACKAGE_VERSION);
34 PA_MODULE_LOAD_ONCE(true);
35
36 int pa__init(pa_module *m) {
37 pa_assert(m);
38 return 0;
39 }
40
41 void pa__done(pa_module *m) {
42 pa_assert(m);
43 }