Cleanup
[carla.git] / source / includes / clap / string-sizes.h
blob4334c6def60223a102ba9c3256123eb0b36ec668
1 #pragma once
3 #ifdef __cplusplus
4 extern "C" {
5 #endif
7 enum {
8 // String capacity for names that can be displayed to the user.
9 CLAP_NAME_SIZE = 256,
11 // String capacity for describing a path, like a parameter in a module hierarchy or path within a
12 // set of nested track groups.
14 // This is not suited for describing a file path on the disk, as NTFS allows up to 32K long
15 // paths.
16 CLAP_PATH_SIZE = 1024,
19 #ifdef __cplusplus
21 #endif