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.

instance-access.h 1.5KB

12 years ago
12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. LV2 Instance Access Extension
  3. Copyright 2008-2012 David Robillard <http://drobilla.net>
  4. Permission to use, copy, modify, and/or distribute this software for any
  5. purpose with or without fee is hereby granted, provided that the above
  6. copyright notice and this permission notice appear in all copies.
  7. THIS SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  8. WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  9. MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  10. ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  11. WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  12. ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  13. OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  14. */
  15. #ifndef LV2_INSTANCE_ACCESS_H
  16. #define LV2_INSTANCE_ACCESS_H
  17. #define LV2_INSTANCE_ACCESS_URI "http://lv2plug.in/ns/ext/instance-access"
  18. /**
  19. @file instance-access.h
  20. C header for the LV2 Instance Access extension
  21. <http://lv2plug.in/ns/ext/instance-access>.
  22. This extension defines a method for (e.g.) plugin UIs to get a direct
  23. handle to an LV2 plugin instance (LV2_Handle), if possible.
  24. To support this feature the host must pass an LV2_Feature struct to the
  25. UI instantiate method with URI "http://lv2plug.in/ns/ext/instance-access"
  26. and data pointed directly to the LV2_Handle of the plugin instance.
  27. */
  28. #endif /* LV2_INSTANCE_ACCESS_H */