|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- /*
- * Carla Plugin Host
- * Copyright (C) 2011-2020 Filipe Coelho <falktx@falktx.com>
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of
- * the License, or any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * For a full copy of the GNU General Public License see the doc/GPL.txt file.
- */
-
- #ifndef CARLA_NATIVE_PLUGIN_H_INCLUDED
- #define CARLA_NATIVE_PLUGIN_H_INCLUDED
-
- #include "CarlaNative.h"
- #include "CarlaHost.h"
-
- #ifndef CARLA_HOST_H_INCLUDED
- #ifndef CARLA_UTILS_H_INCLUDED
- /*!
- * Get the absolute filename of this carla library.
- */
- CARLA_EXPORT const char* carla_get_library_filename(void);
-
- /*!
- * Get the folder where this carla library resides.
- */
- CARLA_EXPORT const char* carla_get_library_folder(void);
- #endif
- #endif
-
- /*!
- * Get the native plugin descriptor for the carla-rack plugin.
- */
- CARLA_EXPORT const NativePluginDescriptor* carla_get_native_rack_plugin(void);
-
- /*!
- * Get the native plugin descriptor for the carla-patchbay plugin.
- */
- CARLA_EXPORT const NativePluginDescriptor* carla_get_native_patchbay_plugin(void);
-
- /*!
- * Get the native plugin descriptor for the carla-patchbay16 plugin.
- */
- CARLA_EXPORT const NativePluginDescriptor* carla_get_native_patchbay16_plugin(void);
-
- /*!
- * Get the native plugin descriptor for the carla-patchbay32 plugin.
- */
- CARLA_EXPORT const NativePluginDescriptor* carla_get_native_patchbay32_plugin(void);
-
- /*!
- * Get the native plugin descriptor for the carla-patchbay64 plugin.
- */
- CARLA_EXPORT const NativePluginDescriptor* carla_get_native_patchbay64_plugin(void);
-
- /*!
- * Get the native plugin descriptor for the carla-patchbay-cv plugin.
- */
- CARLA_EXPORT const NativePluginDescriptor* carla_get_native_patchbay_cv_plugin(void);
-
- /*!
- * Create a CarlaHostHandle suitable for CarlaHost API calls.
- * Returned value must be freed by the caller when no longer needed.
- */
- CARLA_EXPORT CarlaHostHandle carla_create_native_plugin_host_handle(const NativePluginDescriptor* desc,
- NativePluginHandle handle);
-
- /*!
- * Free memory created during carla_create_native_plugin_host_handle.
- */
- CARLA_EXPORT void carla_host_handle_free(CarlaHostHandle handle);
-
- #ifdef __cplusplus
- /*!
- * Get the internal CarlaEngine instance.
- * @deprecated Please use carla_create_native_plugin_host_handle instead
- */
- CARLA_EXPORT CarlaBackend::CarlaEngine* carla_get_native_plugin_engine(const NativePluginDescriptor* desc,
- NativePluginHandle handle);
- #endif
-
- #endif /* CARLA_NATIVE_PLUGIN_H_INCLUDED */
|