Audio plugin host https://kx.studio/carla
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.

37 lines
761B

  1. /*
  2. ZynAddSubFX - a software synthesizer
  3. ConnectionDummy.cpp - Out-Of-Process GUI Stubs
  4. Copyright (C) 2016 Mark McCurry
  5. This program is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU General Public License
  7. as published by the Free Software Foundation; either version 2
  8. of the License, or (at your option) any later version.
  9. */
  10. #include "Connection.h"
  11. #include <unistd.h>
  12. namespace GUI {
  13. ui_handle_t createUi(Fl_Osc_Interface*, void *)
  14. {
  15. return 0;
  16. }
  17. void destroyUi(ui_handle_t)
  18. {
  19. }
  20. void raiseUi(ui_handle_t, const char *)
  21. {
  22. }
  23. void raiseUi(ui_handle_t, const char *, const char *, ...)
  24. {
  25. }
  26. void tickUi(ui_handle_t)
  27. {
  28. usleep(1000);
  29. }
  30. Fl_Osc_Interface *genOscInterface(MiddleWare*)
  31. {
  32. return NULL;
  33. }
  34. };