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.

50 lines
1.8KB

  1. /*
  2. Copyright 2011 David Robillard <http://drobilla.net>
  3. Permission to use, copy, modify, and/or distribute this software for any
  4. purpose with or without fee is hereby granted, provided that the above
  5. copyright notice and this permission notice appear in all copies.
  6. THIS SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  7. WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  8. MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  9. ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  10. WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  11. ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  12. OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  13. */
  14. /**
  15. @file time.h C header for the LV2 Time extension
  16. <http://lv2plug.in/ns/ext/time>.
  17. */
  18. #ifndef LV2_TIME_H
  19. #define LV2_TIME_H
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23. #define LV2_TIME_URI "http://lv2plug.in/ns/ext/time"
  24. #define LV2_TIME__Time LV2_TIME_URI "#Time"
  25. #define LV2_TIME__Position LV2_TIME_URI "#Position"
  26. #define LV2_TIME__Rate LV2_TIME_URI "#Rate"
  27. #define LV2_TIME__position LV2_TIME_URI "#position"
  28. #define LV2_TIME__barBeat LV2_TIME_URI "#barBeat"
  29. #define LV2_TIME__bar LV2_TIME_URI "#bar"
  30. #define LV2_TIME__beat LV2_TIME_URI "#beat"
  31. #define LV2_TIME__beatUnit LV2_TIME_URI "#beatUnit"
  32. #define LV2_TIME__beatsPerBar LV2_TIME_URI "#beatsPerBar"
  33. #define LV2_TIME__beatsPerMinute LV2_TIME_URI "#beatsPerMinute"
  34. #define LV2_TIME__frame LV2_TIME_URI "#frame"
  35. #define LV2_TIME__framesPerSecond LV2_TIME_URI "#framesPerSecond"
  36. #define LV2_TIME__speed LV2_TIME_URI "#speed"
  37. #ifdef __cplusplus
  38. } /* extern "C" */
  39. #endif
  40. #endif /* LV2_TIME_H */