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.

ConnectionDummy.cpp 385B

12345678910111213141516171819202122232425
  1. #include "Connection.h"
  2. #include <unistd.h>
  3. namespace GUI {
  4. ui_handle_t createUi(Fl_Osc_Interface*, void *)
  5. {
  6. return 0;
  7. }
  8. void destroyUi(ui_handle_t)
  9. {
  10. }
  11. void raiseUi(ui_handle_t, const char *)
  12. {
  13. }
  14. void raiseUi(ui_handle_t, const char *, const char *, ...)
  15. {
  16. }
  17. void tickUi(ui_handle_t)
  18. {
  19. usleep(100000);
  20. }
  21. Fl_Osc_Interface *genOscInterface(MiddleWare*)
  22. {
  23. return NULL;
  24. }
  25. };