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.

59 lines
1.4KB

  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. #include <stdbool.h>
  16. #include <dbus/dbus.h>
  17. #include <jack/driver.h>
  18. #include <jack/engine.h>
  19. #include "dbus.h"
  20. #include "controller_internal.h"
  21. bool
  22. jack_controller_settings_init()
  23. {
  24. return true;
  25. }
  26. void
  27. jack_controller_settings_uninit()
  28. {
  29. }
  30. bool
  31. jack_controller_settings_save(
  32. struct jack_controller * controller_ptr,
  33. void *dbus_call_context_ptr)
  34. {
  35. jack_dbus_error(dbus_call_context_ptr, JACK_DBUS_ERROR_GENERIC, "jackdbus compiled without settings persistence");
  36. return true;
  37. }
  38. void
  39. jack_controller_settings_load(
  40. struct jack_controller * controller_ptr)
  41. {
  42. }
  43. void
  44. jack_controller_settings_save_auto(
  45. struct jack_controller * controller_ptr)
  46. {
  47. }