[wscript] Even more -Wl,--as-needed fixes
[jack2.git] / dbus / xml_nop.c
blobe234076b65c0e3fd60accca88a50f0e3b683e620
1 /* -*- Mode: C ; c-basic-offset: 4 -*- */
2 /*
3 Copyright (C) 2007,2008 Nedko Arnaudov
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 #if defined(HAVE_CONFIG_H)
21 #include "config.h"
22 #endif
24 #include <stdbool.h>
25 #include <dbus/dbus.h>
27 #include <jack/driver.h>
28 #include <jack/engine.h>
29 #include "dbus.h"
30 #include "controller_internal.h"
32 bool
33 jack_controller_settings_init()
35 return true;
38 void
39 jack_controller_settings_uninit()
43 bool
44 jack_controller_settings_save(
45 struct jack_controller * controller_ptr,
46 void *dbus_call_context_ptr)
48 jack_dbus_error(dbus_call_context_ptr, JACK_DBUS_ERROR_GENERIC, "jackdbus compiled without settings persistence");
49 return true;
52 void
53 jack_controller_settings_load(
54 struct jack_controller * controller_ptr)
58 void
59 jack_controller_settings_save_auto(
60 struct jack_controller * controller_ptr)