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.

96 lines
2.8KB

  1. /*
  2. * Carla Native Plugins
  3. * Copyright (C) 2012-2014 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. // Simple plugins
  19. extern void carla_register_native_plugin_bypass();
  20. extern void carla_register_native_plugin_lfo();
  21. extern void carla_register_native_plugin_midigain();
  22. extern void carla_register_native_plugin_midisplit();
  23. extern void carla_register_native_plugin_midithrough();
  24. extern void carla_register_native_plugin_miditranspose();
  25. extern void carla_register_native_plugin_nekofilter();
  26. // Audio File
  27. extern void carla_register_native_plugin_audiofile();
  28. // MIDI File
  29. extern void carla_register_native_plugin_midifile();
  30. #ifndef CARLA_OS_WIN
  31. // Carla
  32. extern void carla_register_native_plugin_carla();
  33. // External-UI plugins
  34. extern void carla_register_native_plugin_bigmeter();
  35. extern void carla_register_native_plugin_notes();
  36. #endif
  37. #ifdef HAVE_JUCE_UI
  38. // JUCE based plugins
  39. extern void carla_register_native_plugin_jucepatchbay();
  40. extern void carla_register_native_plugin_vex_fx();
  41. extern void carla_register_native_plugin_vex_synth();
  42. #endif
  43. #ifdef WANT_ZYNADDSUBFX
  44. // ZynAddSubFX
  45. extern void carla_register_native_plugin_zynaddsubfx_fx();
  46. extern void carla_register_native_plugin_zynaddsubfx_synth();
  47. #endif
  48. void carla_register_all_plugins()
  49. {
  50. // Simple plugins
  51. carla_register_native_plugin_bypass();
  52. carla_register_native_plugin_lfo();
  53. carla_register_native_plugin_midigain();
  54. carla_register_native_plugin_midisplit();
  55. carla_register_native_plugin_midithrough();
  56. carla_register_native_plugin_miditranspose();
  57. carla_register_native_plugin_nekofilter();
  58. // Audio File
  59. carla_register_native_plugin_audiofile();
  60. // MIDI File
  61. carla_register_native_plugin_midifile();
  62. #ifndef CARLA_OS_WIN
  63. // Carla
  64. carla_register_native_plugin_carla();
  65. // External-UI plugins
  66. carla_register_native_plugin_bigmeter();
  67. carla_register_native_plugin_notes();
  68. #endif
  69. #ifdef HAVE_JUCE_UI
  70. // JUCE based plugins
  71. carla_register_native_plugin_jucepatchbay();
  72. carla_register_native_plugin_vex_fx();
  73. carla_register_native_plugin_vex_synth();
  74. #endif
  75. #ifdef WANT_ZYNADDSUBFX
  76. // ZynAddSubFX
  77. carla_register_native_plugin_zynaddsubfx_fx();
  78. carla_register_native_plugin_zynaddsubfx_synth();
  79. #endif
  80. }