External plugins for 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.

67 lines
2.5KB

  1. /*
  2. * Carla Native Plugins
  3. * Copyright (C) 2012-2018 Filipe Coelho <falktx@falktx.com>
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License as
  7. * published by the Free Software Foundation; either version 2 of
  8. * the License, or any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * For a full copy of the GNU General Public License see the doc/GPL.txt file.
  16. */
  17. #include "CarlaDefines.h"
  18. #include "CarlaNative.h"
  19. // --------------------------------------------------------------------------------------------------------------------
  20. // DISTRHO plugins
  21. extern void carla_register_native_plugin_distrho_3bandeq(void);
  22. extern void carla_register_native_plugin_distrho_3bandsplitter(void);
  23. extern void carla_register_native_plugin_distrho_kars(void);
  24. extern void carla_register_native_plugin_distrho_nekobi(void);
  25. extern void carla_register_native_plugin_distrho_pingpongpan(void);
  26. extern void carla_register_native_plugin_distrho_prom(void);
  27. // DISTRHO plugins (Juice)
  28. extern void carla_register_native_plugin_distrho_vectorjuice(void);
  29. extern void carla_register_native_plugin_distrho_wobblejuice(void);
  30. // ZynAddSubFX
  31. extern void carla_register_native_plugin_zynaddsubfx_fx(void);
  32. extern void carla_register_native_plugin_zynaddsubfx_synth(void);
  33. // --------------------------------------------------------------------------------------------------------------------
  34. void carla_register_all_native_external_plugins(void)
  35. {
  36. // DISTRHO Plugins
  37. carla_register_native_plugin_distrho_3bandeq();
  38. carla_register_native_plugin_distrho_3bandsplitter();
  39. carla_register_native_plugin_distrho_kars();
  40. carla_register_native_plugin_distrho_nekobi();
  41. carla_register_native_plugin_distrho_pingpongpan();
  42. #if defined(HAVE_DGL) && defined(HAVE_PROJECTM)
  43. carla_register_native_plugin_distrho_prom();
  44. #endif
  45. // DISTRHO plugins (Juice)
  46. carla_register_native_plugin_distrho_vectorjuice();
  47. carla_register_native_plugin_distrho_wobblejuice();
  48. #ifdef HAVE_ZYN_DEPS
  49. // ZynAddSubFX
  50. carla_register_native_plugin_zynaddsubfx_fx();
  51. # ifndef SKIP_ZYN_SYNTH
  52. carla_register_native_plugin_zynaddsubfx_synth();
  53. # endif
  54. #endif
  55. }
  56. // --------------------------------------------------------------------------------------------------------------------