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.

_all.base.c 2.6KB

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /*
  2. * Carla Native Plugins
  3. * Copyright (C) 2012-2017 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. #ifdef CARLA_OS_WIN
  20. # define DISABLE_PLUGINS_FOR_WINDOWS_BUILD
  21. # undef HAVE_PYQT
  22. #endif
  23. // --------------------------------------------------------------------------------------------------------------------
  24. // Simple plugins
  25. extern void carla_register_native_plugin_bypass(void);
  26. extern void carla_register_native_plugin_lfo(void);
  27. extern void carla_register_native_plugin_midichanfilter(void);
  28. extern void carla_register_native_plugin_midigain(void);
  29. extern void carla_register_native_plugin_midijoin(void);
  30. extern void carla_register_native_plugin_midisplit(void);
  31. extern void carla_register_native_plugin_midithrough(void);
  32. extern void carla_register_native_plugin_miditranspose(void);
  33. // MIDI sequencer
  34. extern void carla_register_native_plugin_midipattern(void);
  35. // Carla
  36. extern void carla_register_native_plugin_carla(void);
  37. // External-UI plugins
  38. extern void carla_register_native_plugin_bigmeter(void);
  39. extern void carla_register_native_plugin_notes(void);
  40. // --------------------------------------------------------------------------------------------------------------------
  41. void carla_register_all_native_plugins(void)
  42. {
  43. // Simple plugins
  44. carla_register_native_plugin_bypass();
  45. carla_register_native_plugin_lfo();
  46. carla_register_native_plugin_midichanfilter();
  47. carla_register_native_plugin_midigain();
  48. carla_register_native_plugin_midijoin();
  49. carla_register_native_plugin_midisplit();
  50. carla_register_native_plugin_midithrough();
  51. carla_register_native_plugin_miditranspose();
  52. #ifdef HAVE_PYQT
  53. // MIDI sequencer
  54. carla_register_native_plugin_midipattern();
  55. // Carla
  56. carla_register_native_plugin_carla();
  57. #endif
  58. // External-UI plugins
  59. carla_register_native_plugin_bigmeter();
  60. carla_register_native_plugin_notes();
  61. }
  62. // --------------------------------------------------------------------------------------------------------------------