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.

52 lines
1.5KB

  1. /*
  2. * Carla Plugin Host
  3. * Copyright (C) 2011-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. #ifndef CARLA_NATIVE_PLUGIN_H_INCLUDED
  18. #define CARLA_NATIVE_PLUGIN_H_INCLUDED
  19. #include "CarlaBackend.h"
  20. #include "CarlaNative.h"
  21. /*!
  22. * Get the absolute filename of this carla library.
  23. */
  24. CARLA_EXPORT const char* carla_get_library_filename();
  25. /*!
  26. * Get the folder where this carla library resides.
  27. */
  28. CARLA_EXPORT const char* carla_get_library_folder();
  29. /*!
  30. * Get the native plugin descriptor for the carla-rack plugin.
  31. */
  32. CARLA_EXPORT const NativePluginDescriptor* carla_get_native_rack_plugin();
  33. /*!
  34. * Get the native plugin descriptor for the carla-patchbay plugin.
  35. */
  36. CARLA_EXPORT const NativePluginDescriptor* carla_get_native_patchbay_plugin();
  37. #ifdef __cplusplus
  38. /*!
  39. * Get the internal CarlaEngine instance.
  40. */
  41. CARLA_EXPORT CarlaBackend::CarlaEngine* carla_get_native_plugin_engine(const NativePluginDescriptor* desc, NativePluginHandle handle);
  42. #endif
  43. #endif /* CARLA_NATIVE_PLUGIN_H_INCLUDED */