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.

22 lines
461B

  1. #pragma once
  2. #ifdef __cplusplus
  3. extern "C" {
  4. #endif
  5. enum {
  6. // String capacity for names that can be displayed to the user.
  7. CLAP_NAME_SIZE = 256,
  8. // String capacity for describing a path, like a parameter in a module hierarchy or path within a
  9. // set of nested track groups.
  10. //
  11. // This is not suited for describing a file path on the disk, as NTFS allows up to 32K long
  12. // paths.
  13. CLAP_PATH_SIZE = 1024,
  14. };
  15. #ifdef __cplusplus
  16. }
  17. #endif