jack2 codebase
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
1.5KB

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