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.

77 lines
2.6KB

  1. /*
  2. * Carla Plugin Host
  3. * Copyright (C) 2011-2020 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. #ifndef CARLA_NATIVE_PLUGIN_H_INCLUDED
  18. #define CARLA_NATIVE_PLUGIN_H_INCLUDED
  19. #include "CarlaNative.h"
  20. #include "CarlaHost.h"
  21. #include "CarlaUtils.h"
  22. /*!
  23. * Get the native plugin descriptor for the carla-rack plugin.
  24. */
  25. CARLA_EXPORT const NativePluginDescriptor* carla_get_native_rack_plugin(void);
  26. /*!
  27. * Get the native plugin descriptor for the carla-patchbay plugin.
  28. */
  29. CARLA_EXPORT const NativePluginDescriptor* carla_get_native_patchbay_plugin(void);
  30. /*!
  31. * Get the native plugin descriptor for the carla-patchbay16 plugin.
  32. */
  33. CARLA_EXPORT const NativePluginDescriptor* carla_get_native_patchbay16_plugin(void);
  34. /*!
  35. * Get the native plugin descriptor for the carla-patchbay32 plugin.
  36. */
  37. CARLA_EXPORT const NativePluginDescriptor* carla_get_native_patchbay32_plugin(void);
  38. /*!
  39. * Get the native plugin descriptor for the carla-patchbay64 plugin.
  40. */
  41. CARLA_EXPORT const NativePluginDescriptor* carla_get_native_patchbay64_plugin(void);
  42. /*!
  43. * Get the native plugin descriptor for the carla-patchbay-cv plugin.
  44. */
  45. CARLA_EXPORT const NativePluginDescriptor* carla_get_native_patchbay_cv_plugin(void);
  46. /*!
  47. * Create a CarlaHostHandle suitable for CarlaHost API calls.
  48. * Returned value must be freed by the caller when no longer needed.
  49. */
  50. CARLA_EXPORT CarlaHostHandle carla_create_native_plugin_host_handle(const NativePluginDescriptor* desc,
  51. NativePluginHandle handle);
  52. /*!
  53. * Free memory created during carla_create_native_plugin_host_handle.
  54. */
  55. CARLA_EXPORT void carla_host_handle_free(CarlaHostHandle handle);
  56. #ifdef __cplusplus
  57. /*!
  58. * Get the internal CarlaEngine instance.
  59. * @deprecated Please use carla_create_native_plugin_host_handle instead
  60. */
  61. CARLA_EXPORT CarlaBackend::CarlaEngine* carla_get_native_plugin_engine(const NativePluginDescriptor* desc,
  62. NativePluginHandle handle);
  63. #endif
  64. #endif /* CARLA_NATIVE_PLUGIN_H_INCLUDED */