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.5KB

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